Class SzUnrecoverableException
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.
public class SzUnrecoverableException : SzException, ISerializable
- Inheritance
-
SzUnrecoverableException
- Implements
- Derived
- Inherited Members
Constructors
SzUnrecoverableException()
Default constructor.
public SzUnrecoverableException()
SzUnrecoverableException(Exception)
Constructs with the {@link Throwable} that is the underlying cause for the exception.
public SzUnrecoverableException(Exception cause)
Parameters
causeExceptionThe underlying cause for the exception.
SzUnrecoverableException(long?, string)
Constructs with a message explaining the reason for the exception.
public SzUnrecoverableException(long? errorCode, string message)
Parameters
errorCodelong?The underlying Senzing error code.
messagestringThe message explaining the reason for the exception.
SzUnrecoverableException(long?, string, Exception)
Constructs with the Senzing error code, the message explaining the reason
for the exception and the Exception that is the underlying cause
for the exception.
public SzUnrecoverableException(long? errorCode, string message, Exception cause)
Parameters
errorCodelong?The underlying Senzing error code.
messagestringThe message explaining the reason for the exception.
causeExceptionThe underlying cause for the exception.
SzUnrecoverableException(string)
Constructs with a message explaining the reason for the exception.
public SzUnrecoverableException(string message)
Parameters
messagestringThe message explaining the reason for the exception.
SzUnrecoverableException(string, Exception)
Constructs with a message explaining the reason for the exception and
the Exception that is the underlying cause for the exception.
public SzUnrecoverableException(string message, Exception cause)