Class AssemblerException

    • Constructor Summary

      Constructors 
      Constructor Description
      AssemblerException()
      Constructs a new exception with a null message and cause.
      AssemblerException​(java.lang.String message)
      Constructs a new exception with the given message.
      AssemblerException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new exception with the given message and cause.
      AssemblerException​(java.lang.Throwable cause)
      Constructs a new exception with the given cause.
    • 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

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • AssemblerException

        public AssemblerException()
        Constructs a new exception with a null message and cause.
      • AssemblerException

        public AssemblerException​(java.lang.String message)
        Constructs a new exception with the given message.
        Parameters:
        message - The detailed message.
      • AssemblerException

        public AssemblerException​(java.lang.String message,
                                  java.lang.Throwable cause)
        Constructs a new exception with the given message and cause.
        Parameters:
        message - The detailed message.
        cause - The causing exception. A null value is permitted.
      • AssemblerException

        public AssemblerException​(java.lang.Throwable cause)
        Constructs a new exception with the given cause.
        Parameters:
        cause - The causing exception. A null value is permitted.