Class EnvelopeAccessDeniedException

All Implemented Interfaces:
Serializable

public class EnvelopeAccessDeniedException extends EnvelopeException
This exception is thrown if an artifact cannot be opened.
See Also:
  • Constructor Details

    • EnvelopeAccessDeniedException

      public EnvelopeAccessDeniedException(String message)
      This constructor sets only the message for this exception and leaves the cause to null.
      Parameters:
      message - A message that describes the error.
    • EnvelopeAccessDeniedException

      public EnvelopeAccessDeniedException(Throwable cause)
      This constructor leaves the message null and sets only the cause for this exception. This is usually used to wrap other exception types and unify exception handling for the developer.
      Parameters:
      cause - An other exception that caused this one.
    • EnvelopeAccessDeniedException

      public EnvelopeAccessDeniedException(String message, Throwable cause)
      This constructor allows to set message and cause for this exception.
      Parameters:
      message - A message that describes the error.
      cause - An other exception that caused this one.