Package eu.simuline.octave.exception
Class OctaveRecoverableException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- eu.simuline.octave.exception.OctaveException
-
- eu.simuline.octave.exception.OctaveRecoverableException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
OctaveClassCastException
,OctaveEvalException
,OctaveParseException
public abstract class OctaveRecoverableException extends OctaveException
An exception in the Octave engine that did not break the octave process.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OctaveRecoverableException()
Constructor.OctaveRecoverableException(String message)
Constructor.OctaveRecoverableException(String message, Throwable cause)
Constructor.OctaveRecoverableException(Throwable cause)
Constructor.
-
Method Summary
-
Methods inherited from class eu.simuline.octave.exception.OctaveException
isDestroyed, setDestroyed
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
OctaveRecoverableException
public OctaveRecoverableException()
Constructor.- See Also:
Throwable
-
OctaveRecoverableException
public OctaveRecoverableException(String message)
Constructor.- Parameters:
message
-- See Also:
Throwable
-
OctaveRecoverableException
public OctaveRecoverableException(Throwable cause)
Constructor.- Parameters:
cause
-- See Also:
Throwable
-
-