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
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.