Package eu.simuline.octave.exception
Class OctaveNonrecoverableException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- eu.simuline.octave.exception.OctaveException
-
- eu.simuline.octave.exception.OctaveNonrecoverableException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
OctaveCastServiceException
,OctaveInterruptedException
,OctaveIOException
public abstract class OctaveNonrecoverableException extends OctaveException
An exception in the Octave engine that did break the octave process, any action on the Octave object now will cause a new OctaveNonrecoverableException.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description OctaveNonrecoverableException()
Constructor.OctaveNonrecoverableException(String message)
Constructor.OctaveNonrecoverableException(String message, Throwable cause)
Constructor.OctaveNonrecoverableException(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
-
OctaveNonrecoverableException
public OctaveNonrecoverableException()
Constructor.- See Also:
Throwable
-
OctaveNonrecoverableException
public OctaveNonrecoverableException(String message)
Constructor.- Parameters:
message
-- See Also:
Throwable
-
OctaveNonrecoverableException
public OctaveNonrecoverableException(Throwable cause)
Constructor.- Parameters:
cause
-- See Also:
Throwable
-
-