raccoon.api.exception
Class ResourceNotFoundException

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

public class ResourceNotFoundException
extends RaccoonException

A resource specific exception class.

Since:
Raccoon v0.8
Version:
$Id: ResourceNotFoundException.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
ResourceNotFoundException()
          Constructs a ResourceNotFoundException with no specified detail message.
ResourceNotFoundException(int pErrorCode, java.lang.String pMessage)
          Contructs a ResourceNotFoundException with the specified error code and detail message.
ResourceNotFoundException(int pErrorCode, java.lang.String pMessage, java.lang.Throwable pThrowable)
          Constructs a ResourceNotFoundException with the specified error code, detail message and nested exception.
ResourceNotFoundException(java.lang.String pMessage)
          Constructs a ResourceNotFoundException with the specified detail message.
ResourceNotFoundException(java.lang.String pMessage, java.lang.Throwable pThrowable)
          Constructs a ResourceNotFoundException 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

ResourceNotFoundException

public ResourceNotFoundException()
Constructs a ResourceNotFoundException with no specified detail message.


ResourceNotFoundException

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

Parameters:
pMessage - the detail message

ResourceNotFoundException

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

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

ResourceNotFoundException

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

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

ResourceNotFoundException

public ResourceNotFoundException(int pErrorCode,
                                 java.lang.String pMessage,
                                 java.lang.Throwable pThrowable)
Constructs a ResourceNotFoundException 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.