Class StageException

  • All Implemented Interfaces:
    Serializable

    public class StageException
    extends IOException
    Exception that indicates something has gone wrong with a staging request.
    Author:
    teilo
    See Also:
    Serialized Form
    • Constructor Detail

      • StageException

        public StageException​(String message,
                              Throwable cause)
        Constructs an IOException with the specified detail message and cause.
        Parameters:
        message - the message that should be shown to the end user to explain ehat went wrong.
        cause - the root cause of the issue.
      • StageException

        public StageException​(String message)
        Constructs a StageException with the specified detail message.
        Parameters:
        message - the message that should be shown to the end user to explain what went wrong.
      • StageException

        public StageException​(Throwable cause)
        Constructs a StageException with the specified cause and a detail message of (cause==null ? null : cause.toString())
        Parameters:
        cause - the root cause of the issue.