Package ddf.catalog.resource
Class ResourceNotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
ddf.catalog.resource.ResourceNotFoundException
- All Implemented Interfaces:
Serializable
ResourceNotFoundException is thrown when a
ResourceReader is unable to find a Resource.- Author:
- Michael Menousek
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionInstantiates a new ResourceNotFoundException.ResourceNotFoundException(String message) Instantiates a new resource not found exception with the provided message.ResourceNotFoundException(String message, Throwable throwable) Instantiates a new resource not found exception with the provided message and a throwable.ResourceNotFoundException(Throwable throwable) Instantiates a new resource not found exception with the provided throwable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ResourceNotFoundException
public ResourceNotFoundException()Instantiates a new ResourceNotFoundException. -
ResourceNotFoundException
Instantiates a new resource not found exception with the provided message.- Parameters:
message- the message
-
ResourceNotFoundException
Instantiates a new resource not found exception with the provided message and a throwable.- Parameters:
message- the messagethrowable- the throwable
-
ResourceNotFoundException
Instantiates a new resource not found exception with the provided throwable.- Parameters:
throwable- the throwable
-