raccoon.api.exception
Class ServiceException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by raccoon.api.exception.RaccoonException
              extended by raccoon.api.exception.ServiceException
All Implemented Interfaces:
java.io.Serializable

public class ServiceException
extends RaccoonException

An exception related to a Service.

Since:
Raccoon v0.8
Version:
$Id: ServiceException.java,v 1.1 2004/08/08 20:25:57 crouvrais Exp $
Author:
Cedric ROUVRAIS
See Also:
Serialized Form

Field Summary
 
Fields inherited from class raccoon.api.exception.RaccoonException
MAX_MESSAGE_LENGTH, MAX_MSG_SIZE, MAX_STACK_DEPTH, MESSAGE_TOO_LONG
 
Constructor Summary
ServiceException()
          Constructs a RaccoonException with no specified detail message.
ServiceException(int pErrorCode, java.lang.String pMessage)
          Contructs a RaccoonException with the specified error code and detail message.
ServiceException(int pErrorCode, java.lang.String pMessage, java.lang.Throwable pThrowable)
          Constructs a RaccoonException with the specified error code, detail message and nested exception.
ServiceException(java.lang.String pMessage)
          Constructs a RaccoonException with the specified detail message.
ServiceException(java.lang.String pMessage, java.lang.Throwable pThrowable)
          Constructs a RaccoonException with the specified detail message and nested exception.
 
Method Summary
 
Methods inherited from class raccoon.api.exception.RaccoonException
addContainedException, buildString, getContainedException, getContainedExceptions, getContainedExceptionsSize, getErrorCode, getErrorMessage, getMessage, iterContainedExceptions, printStackTraceAsString, setContainedException, setContainedExceptions, setErrorCode, setErrorMessage, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ServiceException

public ServiceException()
Constructs a RaccoonException with no specified detail message.


ServiceException

public ServiceException(java.lang.String pMessage)
Constructs a RaccoonException with the specified detail message.

Parameters:
pMessage - the detail message

ServiceException

public ServiceException(java.lang.String pMessage,
                        java.lang.Throwable pThrowable)
Constructs a RaccoonException with the specified detail message and nested exception.

Parameters:
pMessage - the detail message
pThrowable - the nested exception

ServiceException

public ServiceException(int pErrorCode,
                        java.lang.String pMessage)
Contructs a RaccoonException with the specified error code and detail message.

Parameters:
pErrorCode - the error code
pMessage - the detail message

ServiceException

public ServiceException(int pErrorCode,
                        java.lang.String pMessage,
                        java.lang.Throwable pThrowable)
Constructs a RaccoonException with the specified error code, detail message and nested exception.

Parameters:
pErrorCode - the error code
pMessage - the detail message
pThrowable - the nested exception


Copyright null null. All Rights Reserved.