Package org.jcsp.net.remote
Class RemoteSpawnException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.jcsp.net.remote.RemoteSpawnException
-
- All Implemented Interfaces:
Serializable
public class RemoteSpawnException extends RuntimeException
Wraps up a non-RuntimeException into a runtime exception that can be ignored or caught and rethrown if required.- Author:
- Quickstone Technologies Limited
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RemoteSpawnException(Throwable cause)
Constructs a new exception.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
printStackTrace()
Prints the stack trace of the actual exception.void
rethrow()
Rethrows the actual exception.String
toString()
Returns a string representation of the actual exception.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Field Detail
-
cause
public final Throwable cause
The actual exception.
-
-
Constructor Detail
-
RemoteSpawnException
public RemoteSpawnException(Throwable cause)
Constructs a new exception.- Parameters:
cause
- the actual exception.
-
-
Method Detail
-
printStackTrace
public void printStackTrace()
Prints the stack trace of the actual exception.- Overrides:
printStackTrace
in classThrowable
-
-