Class LayoutParseException

  • All Implemented Interfaces:
    java.io.Serializable

    public class LayoutParseException
    extends java.lang.Exception
    Exception 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()
      Constructor
      LayoutParseException​(java.lang.String message)
      Constructor with message
      LayoutParseException​(java.lang.String message, java.lang.Throwable cause)
      Constructor with message and cause
      LayoutParseException​(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      Full constructor with all usual options for Exception
      LayoutParseException​(java.lang.Throwable cause)
      Constructor with Throwable
    • 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 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 with Throwable
        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 message
        cause - 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 for Exception
        Parameters:
        message - The exception message
        cause - The cause of the exception
        enableSuppression - true if we enable suppression, See Throwable.addSuppressed(Throwable)
        writableStackTrace - true if stack trace is writable. Normally true ; See Throwable(String, Throwable) and in particular the protected Throwable(String, Throwable, boolean, boolean) constructor for more explanations.