Package org.hkmi2.aagbl
Class LayoutParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.hkmi2.aagbl.LayoutParseException
-
- All Implemented Interfaces:
java.io.Serializable
public class LayoutParseException extends java.lang.ExceptionException specialized class that gets thrown when there was an error in the parsing of an Ascii art layout file.- See Also:
Exception, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LayoutParseException()ConstructorLayoutParseException(java.lang.String message)Constructor with messageLayoutParseException(java.lang.String message, java.lang.Throwable cause)Constructor with message and causeLayoutParseException(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)Full constructor with all usual options forExceptionLayoutParseException(java.lang.Throwable cause)Constructor withThrowable
-
-
-
Constructor Detail
-
LayoutParseException
public LayoutParseException()
Constructor
-
LayoutParseException
public LayoutParseException(java.lang.String message)
Constructor with message- Parameters:
message- The exception message
-
LayoutParseException
public LayoutParseException(java.lang.Throwable cause)
Constructor withThrowable- Parameters:
cause- The cause of the exception
-
LayoutParseException
public LayoutParseException(java.lang.String message, java.lang.Throwable cause)Constructor with message and cause- Parameters:
message- The exception messagecause- The cause of the exception
-
LayoutParseException
public LayoutParseException(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)Full constructor with all usual options forException- Parameters:
message- The exception messagecause- The cause of the exceptionenableSuppression- true if we enable suppression, SeeThrowable.addSuppressed(Throwable)writableStackTrace- true if stack trace is writable. Normally true ; SeeThrowable(String, Throwable)and in particular the protectedThrowable(String, Throwable, boolean, boolean)constructor for more explanations.
-
-