com.ls
Class InvalidArgumentException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--com.ls.BaseRuntimeException
                          |
                          +--com.ls.InvalidArgumentException
All Implemented Interfaces:
Serializable

public class InvalidArgumentException
extends BaseRuntimeException

Exception to identify that a argument for a method is null or empty.

Version:
$Revision: 1.1 $
Author:
Last modified by $Author: MFehrenbach $
See Also:
Serialized Form

Fields inherited from class com.ls.BaseRuntimeException
innerThrowable
 
Constructor Summary
InvalidArgumentException()
          Creates a InvalidArgumentException with no specified detail message.
InvalidArgumentException(String description)
          Creates a InvalidArgumentException with the specified detail message.
InvalidArgumentException(String description, Throwable throwable)
          Creates a InvalidArgumentException with the specified detail message and nested exception.
 
Methods inherited from class com.ls.BaseRuntimeException
getMessage, getNestedThrowable, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidArgumentException

public InvalidArgumentException()
Creates a InvalidArgumentException with no specified detail message.

InvalidArgumentException

public InvalidArgumentException(String description)
Creates a InvalidArgumentException with the specified detail message.
Parameters:
description - The detail message.

InvalidArgumentException

public InvalidArgumentException(String description,
                                Throwable throwable)
Creates a InvalidArgumentException with the specified detail message and nested exception.
Parameters:
description - The detail message.
throwable - The nested exception.