javax.slee
Class InvalidArgumentException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--javax.slee.InvalidArgumentException
All Implemented Interfaces:
java.io.Serializable

public class InvalidArgumentException
extends java.lang.Exception

This exception class is thrown by management operations when given an illegal argument such as a zero-length string or invalid numerical value.

See Also:
Serialized Form

Constructor Summary
InvalidArgumentException()
          Create an InvalidArgumentException with no detail message.
InvalidArgumentException(java.lang.String message)
          Create an InvalidArgumentException with a detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidArgumentException

public InvalidArgumentException()
Create an InvalidArgumentException with no detail message.

InvalidArgumentException

public InvalidArgumentException(java.lang.String message)
Create an InvalidArgumentException with a detail message.
Parameters:
message - the detail message.