Class FastUnsupportedCallbackException

    • Constructor Detail

      • FastUnsupportedCallbackException

        public FastUnsupportedCallbackException​(Callback callback)
        Constructs a new FastUnsupportedCallbackException instance. The message is left blank (null), and no cause is specified.
        Parameters:
        callback - the callback which is not supported (should not be null)
      • FastUnsupportedCallbackException

        public FastUnsupportedCallbackException​(Callback callback,
                                                String msg)
        Constructs a new FastUnsupportedCallbackException instance with an initial message. No cause is specified.
        Parameters:
        callback - the callback which is not supported (should not be null)
        msg - the message
    • Method Detail

      • initCause

        public Throwable initCause​(Throwable cause)
        Does nothing but return this instance.
        Overrides:
        initCause in class Throwable
        Parameters:
        cause - ignored
        Returns:
        this instance
      • getMessage

        public String getMessage()
        Get the message for this exception, formatted with the callback.
        Overrides:
        getMessage in class Throwable
        Returns:
        the message for this exception, with the callback (not null)