java.lang.Object
java.lang.Throwable
java.lang.Exception
omix.plugin.paint.PaintException
- All Implemented Interfaces:
Serializable
public class PaintException extends Exception
A PaintException can occur during a paint procedure of a plugin PaintHandler.
- Since:
- 1.3
- Author:
- Dr. Peter Droste, Omix Visualization
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description PaintException()
Constructs a new exception with null as its detail message.PaintException(String message)
Constructs a new exception with the specified detail message.PaintException(String message, Throwable cause)
Constructs a new exception with the specified detail message and cause.PaintException(Throwable cause)
Constructs a new exception with the specified cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PaintException
public PaintException()Constructs a new exception with null as its detail message.- Since:
- 1.3
-
PaintException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- the detail messageThrowable.getMessage()
cause
- the causeThrowable.getCause()
. (A null value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 1.3
-
PaintException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail messageThrowable.getMessage()
- Since:
- 1.3
-
PaintException
Constructs a new exception with the specified cause.- Parameters:
cause
- the causeThrowable.getCause()
. (A null value is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 1.3
-