org.rosuda.REngine
Class REngineException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.rosuda.REngine.REngineException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
REngineEvalException, RserveException

public class REngineException
extends java.lang.Exception

REngineException is a generic exception that can be thrown by methods invoked on an R engine.

See Also:
Serialized Form

Field Summary
protected  REngine engine
          engine associated with this exception
 
Constructor Summary
REngineException(REngine engine, java.lang.String msg)
          creates an R engine exception
 
Method Summary
 REngine getEngine()
          returns the engine associated with this exception
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

engine

protected REngine engine
engine associated with this exception

Constructor Detail

REngineException

public REngineException(REngine engine,
                        java.lang.String msg)
creates an R engine exception

Parameters:
engine - engine associated with this exception
msg - message describing the cause
Method Detail

getEngine

public REngine getEngine()
returns the engine associated with this exception

Returns:
engine associated with this exception