com.bea.wlai.client
Class EngineException
java.lang.Object
  
AbstractExceptionContainer
      
com.bea.wlai.client.EngineException
public class EngineException
- extends AbstractExceptionContainer
 
An exception which indicates an error accessing or manipulating the
 state of a WLAI engine. This may be a primary exception, or a secondary
 exception wrapping a primary exception. In the former case, no linked
 exception will be available, in the latter case, there will be one or more
 linked exceptions.
| 
Constructor Summary | 
EngineException(String message)
 
          Construct a new EngineException with the given message, and no
 linked exceptions. | 
EngineException(String message,
                Exception exception)
 
          Construct a new EngineException with the given message and one
 linked exception. | 
 
 
 
EngineException
public EngineException(String message)
- Construct a new EngineException with the given message, and no
 linked exceptions.
- Parameters:
 message - The message describing the details of this exception.
 
EngineException
public EngineException(String message,
                       Exception exception)
- Construct a new EngineException with the given message and one
 linked exception. Other linked exceptions may be added after construction
 if desired.
- Parameters:
 message - The message describing the details of this exception.exception - The exception to link to the new exception.