Business Components

oracle.jbo
Class NoObjException

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

public class NoObjException
extends JboException

Indicates that a named object does not exist.

Since:
JDeveloper 3.0
See Also:
Serialized Form

Constructor Summary
NoObjException(int objTypeId, java.lang.String objName)
          Creates an exception to be localized using CSMessageBundle and error code EXC_NO_OBJECT.
NoObjException(java.lang.String objType, java.lang.String objName)
          Creates an exception to be localized using CSMessageBundle and error code EXC_NO_OBJECT.
 
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

NoObjException

public NoObjException(java.lang.String objType,
                      java.lang.String objName)
Creates an exception to be localized using CSMessageBundle and error code EXC_NO_OBJECT.
Parameters:
defType - the object type, the first message parameter.
defName - the object name, the second message parameter.

NoObjException

public NoObjException(int objTypeId,
                      java.lang.String objName)
Creates an exception to be localized using CSMessageBundle and error code EXC_NO_OBJECT.
Parameters:
defType - the object type ID, the first message parameter.
defName - the object name, the second message parameter.

Business Components