@Beta @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.
Constructor and Description |
---|
VerifyException()
Constructs a
VerifyException with no message. |
VerifyException(String message)
Constructs a
VerifyException with the message message . |
VerifyException(String message,
Throwable cause)
Constructs a
VerifyException with the message message and the cause cause . |
VerifyException(Throwable cause)
Constructs a
VerifyException with the cause cause and a message that is null if cause is null, and cause.toString() otherwise. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public VerifyException()
Constructs a VerifyException
with no message.
public VerifyException(@Nullable String message)
Constructs a VerifyException
with the message message
.
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.