Package org.esa.snap.core.gpf
Class OperatorException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.esa.snap.core.gpf.OperatorException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
OperatorCancelException
public class OperatorException extends RuntimeException
A general exception class for all failures within anOperator
implementation.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OperatorException(String message)
Constructs a new exception with the specified detail message.OperatorException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.OperatorException(Throwable cause)
Constructs a new exception by delegating tothis(cause.getMessage(), cause)
.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
OperatorException
public OperatorException(String message)
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message
-
OperatorException
public OperatorException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail messagecause
- the cause
-
OperatorException
public OperatorException(Throwable cause)
Constructs a new exception by delegating tothis(cause.getMessage(), cause)
.- Parameters:
cause
- the cause
-
-