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.
-
-
-
Constructor Detail
-
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
-
-