Business Components

oracle.jbo
Class InvalidParamException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--oracle.jbo.JboException
                          |
                          +--oracle.jbo.InvalidParamException

public class InvalidParamException
extends JboException

Indicates that an attempt has been made to pass an parameter of an invalid type to a method.

Since:
JDeveloper 3.0
See Also:
Serialized Form

Constructor Summary
InvalidParamException(java.lang.String methodName, java.lang.String paramName, java.lang.String value)
          Creates an exception to be localized using CSMessageBundle and error code EXC_INVALID_PARAMETER.
 
Methods inherited from class oracle.jbo.JboException
addToDetails, getBaseMessage, getDetailMessage, getDetails, getErrorCode, getErrorParameters, getJboExceptionHelper, getLocalizedBaseMessage, getLocalizedMessage, getMessage, getProductCode, getResourceClass, getResourceName, getTypeNameFromId, isLocalizable, printStackTrace, printStackTrace, printStackTrace, setApplicationModule, setDetails, setErrorParameters
 
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

InvalidParamException

public InvalidParamException(java.lang.String methodName,
                             java.lang.String paramName,
                             java.lang.String value)
Creates an exception to be localized using CSMessageBundle and error code EXC_INVALID_PARAMETER.
Parameters:
methodName - the method, the first message parameter.
paramName - the parameter passed to the method, the second message parameter.
defName - an explanation for the failure, the third message parameter.

Business Components