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

public abstract class AbstractLocalifyException extends RuntimeException
Abstract base class for all Localify exceptions.
See Also:
  • Constructor Details

    • AbstractLocalifyException

      public AbstractLocalifyException()
      Constructs a new exception with no message or cause.
    • AbstractLocalifyException

      public AbstractLocalifyException(String message)
      Constructs a new exception with the specified message.
      Parameters:
      message - The detail message.
    • AbstractLocalifyException

      public AbstractLocalifyException(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - The cause.
    • AbstractLocalifyException

      public AbstractLocalifyException(String str, Throwable cause)
      Constructs a new exception with the specified message and cause.
      Parameters:
      str - The detail message.
      cause - The cause.