com.dynalivery.repository.util
Class InvalidParameterException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.dynalivery.repository.util.InvalidParameterException

public class InvalidParameterException
extends java.lang.Exception

A public class to return an exception when a bad parameter is passed to a repository method. The message will describe the problem encountered.

See Also:
Serialized Form

Constructor Summary
InvalidParameterException(java.lang.String msg)
          Constructs a InvalidParameterException 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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidParameterException

public InvalidParameterException(java.lang.String msg)
Constructs a InvalidParameterException with a detail message.
Parameters:
msg - the detail message describing the exception.