Class VerifyException

    • Constructor Summary

      Constructors 
      Constructor Description
      VerifyException()
      Constructs a VerifyException with no message.
      VerifyException​(java.lang.String message)
      Constructs a VerifyException with the message message.
      VerifyException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a VerifyException with the message message and the cause cause.
      VerifyException​(java.lang.Throwable cause)
      Constructs a VerifyException with the cause cause and a message that is null if cause is null, and cause.toString() otherwise.
    • 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

      • VerifyException

        public VerifyException()
        Constructs a VerifyException with no message.
      • VerifyException

        public VerifyException​(@CheckForNull
                               java.lang.String message)
        Constructs a VerifyException with the message message.
      • VerifyException

        public VerifyException​(@CheckForNull
                               java.lang.Throwable cause)
        Constructs a VerifyException with the cause cause and a message that is null if cause is null, and cause.toString() otherwise.
        Since:
        19.0
      • VerifyException

        public VerifyException​(@CheckForNull
                               java.lang.String message,
                               @CheckForNull
                               java.lang.Throwable cause)
        Constructs a VerifyException with the message message and the cause cause.
        Since:
        19.0