Module omix.api

Class PaintException

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 Details

    • PaintException

      public PaintException()
      Constructs a new exception with null as its detail message.
      Since:
      1.3
    • PaintException

      public PaintException​(String message, Throwable cause)
      Constructs a new exception with the specified detail message and cause.
      Parameters:
      message - the detail message Throwable.getMessage()
      cause - the cause Throwable.getCause(). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      Since:
      1.3
    • PaintException

      public PaintException​(String message)
      Constructs a new exception with the specified detail message.
      Parameters:
      message - the detail message Throwable.getMessage()
      Since:
      1.3
    • PaintException

      public PaintException​(Throwable cause)
      Constructs a new exception with the specified cause.
      Parameters:
      cause - the cause Throwable.getCause(). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
      Since:
      1.3