Class ApplicationException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
UnauthorizedAccessException, XMLException

public class ApplicationException extends RuntimeException
The class represent an exception that occurs during the user interaction with the application. It extends RuntimeException
See Also:
  • Constructor Details

    • ApplicationException

      public ApplicationException(String message, Throwable cause)
      Creates a new exception with the specified detail message passed as first parameter and cause passed as second one
      Parameters:
      message - The error message attached to the exception
      cause - The specific cause of this exception
    • ApplicationException

      public ApplicationException(Throwable cause)
      Creates the exception with the specified cause
      Parameters:
      cause - The specific cause of this exception
    • ApplicationException

      public ApplicationException(String message)
      Creates the exception with the specified detail message
      Parameters:
      message - The specific detail message of this exception