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, toString

    Methods 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 message
      inLine - The line number
      inColumn - The column number
      inSource - 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 message
      cause - The cause
      inLine - The line number
      inColumn - The column number
      inSource - The source URI