Class VerifyException

All Implemented Interfaces:
Serializable

@GwtCompatible public class VerifyException extends RuntimeException
Exception thrown upon the failure of a verification check, including those performed by the convenience methods of the Verify class.
Since:
17.0
See Also:
  • Constructor Details

    • VerifyException

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

      public VerifyException(@Nullable String message)
      Constructs a VerifyException with the message message.
    • VerifyException

      public VerifyException(@Nullable 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(@Nullable String message, @Nullable Throwable cause)
      Constructs a VerifyException with the message message and the cause cause.
      Since:
      19.0