Class IntegrityException

All Implemented Interfaces:
Serializable, ErrorCodeAccessor, Trap

public class IntegrityException extends AbstractRuntimeException
An integrity exception is thrown whenever the integrity of data may be violated.
See Also:
  • Constructor Details

    • IntegrityException

      public IntegrityException(String aMessage)
      Instantiates a new bug exception.
      Parameters:
      aMessage - The aMessage describing this exception.
    • IntegrityException

      public IntegrityException(String aMessage, Throwable aCause)
      Instantiates a new bug exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
    • IntegrityException

      public IntegrityException(Throwable aCause)
      Instantiates a new bug exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
    • IntegrityException

      public IntegrityException(String aMessage, String aErrorCode)
      Instantiates a new bug exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aErrorCode - The error code identifying this exception.
    • IntegrityException

      public IntegrityException(String aMessage, Throwable aCause, String aErrorCode)
      Instantiates a new bug exception.
      Parameters:
      aMessage - The aMessage describing this exception.
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.
    • IntegrityException

      public IntegrityException(Throwable aCause, String aErrorCode)
      Instantiates a new bug exception.
      Parameters:
      aCause - The Throwable (Exception) causing this exception.
      aErrorCode - The error code identifying this exception.