net.protempore.utils
Class Validator.ValidatorException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by net.protempore.utils.Validator.ValidatorException
All Implemented Interfaces:
java.io.Serializable
Enclosing class:
Validator

public static class Validator.ValidatorException
extends java.lang.RuntimeException

Exception only thrown in case of validator not behaving the way it is intended to behave -- i.e., this never indicates a failure on the part of the client.

See Also:
Serialized Form

Constructor Summary
Validator.ValidatorException()
          Construct new exception with no message or cause.
Validator.ValidatorException(java.lang.String message)
          Construct a new exception with the given message and no cause.
Validator.ValidatorException(java.lang.String message, java.lang.Throwable cause)
          Construct a new exception with the given message and cause.
Validator.ValidatorException(java.lang.Throwable cause)
          Construct a new exception with no message and the given cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, 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

Validator.ValidatorException

public Validator.ValidatorException()
Construct new exception with no message or cause.


Validator.ValidatorException

public Validator.ValidatorException(java.lang.String message,
                                    java.lang.Throwable cause)
Construct a new exception with the given message and cause.

Parameters:
message - An exception message.
cause - An underlying cause for this exception.

Validator.ValidatorException

public Validator.ValidatorException(java.lang.String message)
Construct a new exception with the given message and no cause.

Parameters:
message - An exception message.

Validator.ValidatorException

public Validator.ValidatorException(java.lang.Throwable cause)
Construct a new exception with no message and the given cause.

Parameters:
cause - An underlying cause for this exception.