Class IllegalPathStateException
Object
Throwable
Exception
RuntimeException
IllegalPathStateException
- All Implemented Interfaces:
Serializable
The
IllegalPathStateException represents an
exception that is thrown if an operation is performed on a path
that is in an illegal state with respect to the particular
operation being performed, such as appending a path segment
to a Path2D without an initial moveto.
Adapted from java.awt.geom.IllegalPathStateException and made more
GWT friendly.
- Author:
- Christoph Hauert
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final longUse serialVersionUID from JDK 9 for interoperability. -
Constructor Summary
ConstructorsConstructorDescriptionConstructs anIllegalPathStateExceptionwith no detail message.Constructs anIllegalPathStateExceptionwith the specified detail message. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDUse serialVersionUID from JDK 9 for interoperability.- See Also:
-
-
Constructor Details
-
IllegalPathStateException
public IllegalPathStateException()Constructs anIllegalPathStateExceptionwith no detail message.- Since:
- 1.2
-
IllegalPathStateException
Constructs anIllegalPathStateExceptionwith the specified detail message.- Parameters:
s- the detail message- Since:
- 1.2
-