Package com.io7m.brooklime.api
Class BLParseException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.io7m.brooklime.api.BLException
com.io7m.brooklime.api.BLParseException
- All Implemented Interfaces:
java.io.Serializable
public class BLParseException extends BLException
The type of exceptions caused by failing to parse data.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description BLParseException(java.lang.String message, int inLine, int inColumn, java.net.URI inSource)Construct an exception.BLParseException(java.lang.String message, java.lang.Throwable cause, int inLine, int inColumn, java.net.URI inSource)Construct an exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
BLParseException
public BLParseException(java.lang.String message, int inLine, int inColumn, java.net.URI inSource)Construct an exception.- Parameters:
message- The messageinLine- The line numberinColumn- The column numberinSource- The source URI
-
BLParseException
public BLParseException(java.lang.String message, java.lang.Throwable cause, int inLine, int inColumn, java.net.URI inSource)Construct an exception.- Parameters:
message- The messagecause- The causeinLine- The line numberinColumn- The column numberinSource- The source URI
-