net.sf.qualitycheck.exception
Class IllegalNotGreaterThanException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by net.sf.qualitycheck.exception.IllegalNotGreaterThanException
All Implemented Interfaces:
Serializable

public class IllegalNotGreaterThanException
extends RuntimeException

Thrown to indicate that a method was passed arguments which was expected to be greater than another object but was not.

Author:
André Rouél, Dominik Seichter
See Also:
Serialized Form

Field Summary
protected static String DEFAULT_MESSAGE
          Default message to indicate that the given arguments must be greater then another object.
 
Constructor Summary
IllegalNotGreaterThanException()
          Constructs an IllegalNotGreaterThanException with the default message DEFAULT_MESSAGE.
IllegalNotGreaterThanException(String message)
          Constructs an IllegalNotGreaterThanException with a given message.
IllegalNotGreaterThanException(String message, Throwable cause)
          Constructs a new exception with a given message.
IllegalNotGreaterThanException(Throwable cause)
          Constructs a new exception with the default message DEFAULT_MESSAGE.
 
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
 

Field Detail

DEFAULT_MESSAGE

protected static final String DEFAULT_MESSAGE
Default message to indicate that the given arguments must be greater then another object.

See Also:
Constant Field Values
Constructor Detail

IllegalNotGreaterThanException

public IllegalNotGreaterThanException()
Constructs an IllegalNotGreaterThanException with the default message DEFAULT_MESSAGE.


IllegalNotGreaterThanException

public IllegalNotGreaterThanException(@Nonnull
                                      String message)
Constructs an IllegalNotGreaterThanException with a given message.

Parameters:
message - explains why the object must greater than another object

IllegalNotGreaterThanException

public IllegalNotGreaterThanException(@Nonnull
                                      String message,
                                      @Nullable
                                      Throwable cause)
Constructs a new exception with a given message.

Parameters:
message - explains why the object must greater than another object
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

IllegalNotGreaterThanException

public IllegalNotGreaterThanException(@Nullable
                                      Throwable cause)
Constructs a new exception with the default message DEFAULT_MESSAGE.

Parameters:
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)


Copyright © 2012-2013. All Rights Reserved.