Class SzUnrecoverableException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
SzDatabaseException, SzLicenseException, SzNotInitializedException, SzUnhandledException

public class SzUnrecoverableException extends SzException
Defines an exceptional condition where the failure is not recoverable and all operations should be stopped until the system can be modified to resolve the condition causing the failure.
See Also:
  • Constructor Details

    • SzUnrecoverableException

      public SzUnrecoverableException()
      Default constructor.
    • SzUnrecoverableException

      public SzUnrecoverableException(String message)
      Constructs with a message explaing the reason for the exception.
      Parameters:
      message - The message explaining the reason for the exception.
    • SzUnrecoverableException

      public SzUnrecoverableException(int errorCode, String message)
      Constructs with a message explaing the reason for the exception.
      Parameters:
      errorCode - The underlying senzing error code.
      message - The message explaining the reason for the exception.
    • SzUnrecoverableException

      public SzUnrecoverableException(Throwable cause)
      Constructs with the Throwable that is the underlying cause for the exception.
      Parameters:
      cause - The message The message explaining the reason for the exception.
    • SzUnrecoverableException

      public SzUnrecoverableException(String message, Throwable cause)
      Constructs with a message explaing the reason for the exception and the Throwable that is the underlying cause for the exception.
      Parameters:
      message - The message explaining the reason for the exception.
      cause - The message The message explaining the reason for the exception.
    • SzUnrecoverableException

      public SzUnrecoverableException(int errorCode, String message, Throwable cause)
      Constructs with the Senzing error code, the message explaing the reason for the exception and the Throwable that is the underlying cause for the exception.
      Parameters:
      errorCode - The underlying senzing error code.
      message - The message explaining the reason for the exception.
      cause - The message The message explaining the reason for the exception.