edu.uoc.tfc.service
Class PartServiceException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by edu.uoc.tfc.service.PartServiceException
All Implemented Interfaces:
java.io.Serializable

public class PartServiceException
extends java.lang.RuntimeException

The default exception thrown for unexpected errors occurring within PartService.

See Also:
Serialized Form

Constructor Summary
PartServiceException()
          The default constructor for PartServiceException.
PartServiceException(java.lang.String message)
          Constructs a new instance of PartServiceException.
PartServiceException(java.lang.String message, java.lang.Throwable throwable)
          Constructs a new instance of PartServiceException.
PartServiceException(java.lang.Throwable throwable)
          Constructs a new instance of PartServiceException.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PartServiceException

public PartServiceException()
The default constructor for PartServiceException.


PartServiceException

public PartServiceException(java.lang.Throwable throwable)
Constructs a new instance of PartServiceException.

Parameters:
throwable - the parent Throwable

PartServiceException

public PartServiceException(java.lang.String message)
Constructs a new instance of PartServiceException.

Parameters:
message - the throwable message.

PartServiceException

public PartServiceException(java.lang.String message,
                            java.lang.Throwable throwable)
Constructs a new instance of PartServiceException.

Parameters:
message - the throwable message.
throwable - the parent of this Throwable.