Package org.localify.common.exceptions
Class NotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.localify.common.exceptions.AbstractLocalifyException
org.localify.common.exceptions.NotFoundException
- All Implemented Interfaces:
Serializable
Exception thrown when a requested resource could not be found.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new NotFoundException with a default message.NotFoundException(String message) Constructs a new NotFoundException with the specified message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotFoundException
public NotFoundException()Constructs a new NotFoundException with a default message. -
NotFoundException
Constructs a new NotFoundException with the specified message.- Parameters:
message- The detail message.
-