Package org.localify.common.exceptions
Class AbstractLocalifyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.localify.common.exceptions.AbstractLocalifyException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BadRequestException,ForbiddenException,InternalProcessingException,NotFoundException,NotImplementedException,RecommenderTimeout,SessionExpiredException,UnauthorizedException
Abstract base class for all Localify exceptions.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception with no message or cause.AbstractLocalifyException(String message) Constructs a new exception with the specified message.AbstractLocalifyException(String str, Throwable cause) Constructs a new exception with the specified message and cause.Constructs a new exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AbstractLocalifyException
public AbstractLocalifyException()Constructs a new exception with no message or cause. -
AbstractLocalifyException
Constructs a new exception with the specified message.- Parameters:
message- The detail message.
-
AbstractLocalifyException
Constructs a new exception with the specified cause.- Parameters:
cause- The cause.
-
AbstractLocalifyException
Constructs a new exception with the specified message and cause.- Parameters:
str- The detail message.cause- The cause.
-