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
cause
ExceptionThe underlying cause for the exception.
SzUnrecoverableException(long?, string)
Constructs with a message explaing the reason for the exception.
public SzUnrecoverableException(long? errorCode, string message)
Parameters
errorCode
long?The underlying Senzing error code.
message
stringThe message explaining the reason for the exception.
SzUnrecoverableException(long?, string, Exception)
Constructs with the Senzing error code, the message explaing 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
errorCode
long?The underlying Senzing error code.
message
stringThe message explaining the reason for the exception.
cause
ExceptionThe underlying cause for the exception.
SzUnrecoverableException(string)
Constructs with a message explaing the reason for the exception.
public SzUnrecoverableException(string message)
Parameters
message
stringThe message explaining the reason for the exception.
SzUnrecoverableException(string, Exception)
Constructs with a message explaing the reason for the exception and
the Exception
that is the underlying cause for the exception.
public SzUnrecoverableException(string message, Exception cause)