Class DAException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
MissingPoolException

public class DAException extends Exception
The class represent a blocking exception that occurs in the data access phase performed by the DABase. These kind of exceptions must be transformed into an appropriate ApplicationException.
See Also:
  • Constructor Details

    • DAException

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

      public DAException(String message, Exception 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
    • DAException

      public DAException(String message)
      Creates a new exception with the specified detail message.
      Parameters:
      message - The error message attached to the exception.