Class PicoCompositionException

    • Constructor Summary

      Constructors 
      Constructor Description
      PicoCompositionException​(java.lang.String message)
      Construct a new exception with no cause and the specified detail message.
      PicoCompositionException​(java.lang.String message, java.lang.Throwable cause)
      Construct a new exception with the specified cause and the specified detail message.
      PicoCompositionException​(java.lang.Throwable cause)
      Construct a new exception with the specified cause and no detail message.
    • 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

      • PicoCompositionException

        public PicoCompositionException​(java.lang.String message)
        Construct a new exception with no cause and the specified detail message. Note modern JVMs may still track the exception that caused this one.
        Parameters:
        message - the message detailing the exception.
      • PicoCompositionException

        public PicoCompositionException​(java.lang.Throwable cause)
        Construct a new exception with the specified cause and no detail message.
        Parameters:
        cause - the exception that caused this one.
      • PicoCompositionException

        public PicoCompositionException​(java.lang.String message,
                                        java.lang.Throwable cause)
        Construct a new exception with the specified cause and the specified detail message.
        Parameters:
        message - the message detailing the exception.
        cause - the exception that caused this one.