Class AnchorRuntimeException

Object
Throwable
Exception
RuntimeException
AnchorRuntimeException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AnchorFriendlyRuntimeException, AnchorNeverOccursException, OperationFailedRuntimeException

public abstract class AnchorRuntimeException extends RuntimeException
A base class for all unchecked (runtime) exceptions used on the Anchor platform.
Author:
Owen Feehan
See Also:
  • Constructor Details

    • AnchorRuntimeException

      protected AnchorRuntimeException()
      Creates without message or cause.
    • AnchorRuntimeException

      protected AnchorRuntimeException(String message, Throwable cause)
      Creates with message and cause.
      Parameters:
      message - the message.
      cause - the cause.
    • AnchorRuntimeException

      protected AnchorRuntimeException(String message)
      Creates with only a message.
      Parameters:
      message - the message.
    • AnchorRuntimeException

      protected AnchorRuntimeException(Throwable cause)
      Creates with only a cause.
      Parameters:
      cause - the cause.
  • Method Details