Class JSAPException

    • Constructor Summary

      Constructors 
      Constructor Description
      JSAPException()
      Creates a new JSAPException.
      JSAPException​(java.lang.String msg)
      Creates a new JSAPException with the specified message.
      JSAPException​(java.lang.String msg, java.lang.Throwable cause)
      Creates a new JSAPException with the specified message encapsulating the specified Throwable.
      JSAPException​(java.lang.Throwable cause)
      Creates a new JSAPException encapsulating the specified 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

      • JSAPException

        public JSAPException()
        Creates a new JSAPException.
      • JSAPException

        public JSAPException​(java.lang.String msg)
        Creates a new JSAPException with the specified message.
        Parameters:
        msg - the message for this JSAPException.
      • JSAPException

        public JSAPException​(java.lang.Throwable cause)
        Creates a new JSAPException encapsulating the specified Throwable.
        Parameters:
        cause - the Throwable to encapsulate.
      • JSAPException

        public JSAPException​(java.lang.String msg,
                             java.lang.Throwable cause)
        Creates a new JSAPException with the specified message encapsulating the specified Throwable.
        Parameters:
        msg - the message for this JSAPException.
        cause - the Throwable to encapsulate.