Package com.varnernet.gerb4j
Class GerberParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.varnernet.gerb4j.GerberParseException
- All Implemented Interfaces:
Serializable
Thrown when a Gerber input cannot be parsed successfully.
This is an unchecked exception so that the convenience factory methods on
GerberContext remain easy to use in both application and library code.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionGerberParseException(String message) Creates a newGerberParseExceptionwith the specified detail message.GerberParseException(String message, Throwable cause) Creates a newGerberParseExceptionwith the specified detail message and 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
-
GerberParseException
Creates a newGerberParseExceptionwith the specified detail message.- Parameters:
message- the detail message
-
GerberParseException
Creates a newGerberParseExceptionwith the specified detail message and cause.- Parameters:
message- the detail messagecause- the underlying cause
-