net.sf.qualitycheck.exception
Class IllegalNegativeArgumentException

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

public class IllegalNegativeArgumentException
extends RuntimeException

Thrown to indicate that a specific argument of a method has been passed with a negative integer reference that it does not accept as valid. For example, if a method needs an ID smaller than 0 and is passed with -1 then this exception should be thrown.

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

Field Summary
protected static String DEFAULT_MESSAGE
          Default message to indicate that the a given argument must not be empty.
protected static String MESSAGE_WITH_NAME
          Message to indicate that the the given argument with name must not be empty.
 
Constructor Summary
IllegalNegativeArgumentException()
          Constructs an IllegalNullArgumentException with the default message DEFAULT_MESSAGE.
IllegalNegativeArgumentException(String argumentName)
          Constructs an IllegalNullArgumentException with the message MESSAGE_WITH_NAME including the given name of the argument as string representation.
IllegalNegativeArgumentException(String argumentName, Throwable cause)
          Constructs a new exception with the message MESSAGE_WITH_NAME including the given name as string representation and cause.
IllegalNegativeArgumentException(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 a given argument must not be empty.

See Also:
Constant Field Values

MESSAGE_WITH_NAME

protected static final String MESSAGE_WITH_NAME
Message to indicate that the the given argument with name must not be empty.

See Also:
Constant Field Values
Constructor Detail

IllegalNegativeArgumentException

public IllegalNegativeArgumentException()
Constructs an IllegalNullArgumentException with the default message DEFAULT_MESSAGE.


IllegalNegativeArgumentException

public IllegalNegativeArgumentException(@Nullable
                                        String argumentName)
Constructs an IllegalNullArgumentException with the message MESSAGE_WITH_NAME including the given name of the argument as string representation.

Parameters:
argumentName - the name of the passed argument

IllegalNegativeArgumentException

public IllegalNegativeArgumentException(@Nullable
                                        String argumentName,
                                        @Nullable
                                        Throwable cause)
Constructs a new exception with the message MESSAGE_WITH_NAME including the given name as string representation and cause.

Parameters:
argumentName - the name of the passed argument
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.)

IllegalNegativeArgumentException

public IllegalNegativeArgumentException(@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.