Package org.opentcs.access
Class KernelRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.opentcs.access.KernelRuntimeException
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
CredentialsException
,ObjectExistsException
,ObjectUnknownException
,ServiceUnavailableException
,TransportOrderAssignmentException
public class KernelRuntimeException
extends java.lang.RuntimeException
implements java.io.Serializable
A runtime exception thrown by the openTCS kernel.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description KernelRuntimeException()
Constructs a new instance with no detail message.KernelRuntimeException(java.lang.String message)
Constructs a new instance with the specified detail message.KernelRuntimeException(java.lang.String message, java.lang.Throwable cause)
Constructs a new instance with the specified detail message and cause.KernelRuntimeException(java.lang.Throwable cause)
Constructs a new instance with the specified cause and a detail message of(cause == null ? null : cause.toString())
(which typically contains the class and detail message ofcause
). -
Method Summary
-
Constructor Details
-
KernelRuntimeException
public KernelRuntimeException()Constructs a new instance with no detail message. -
KernelRuntimeException
public KernelRuntimeException(java.lang.String message)Constructs a new instance with the specified detail message.- Parameters:
message
- The detail message.
-
KernelRuntimeException
public KernelRuntimeException(java.lang.String message, java.lang.Throwable cause)Constructs a new instance with the specified detail message and cause.- Parameters:
message
- The detail message.cause
- The exception's cause.
-
KernelRuntimeException
public KernelRuntimeException(java.lang.Throwable cause)Constructs a new instance with the specified cause and a detail message of(cause == null ? null : cause.toString())
(which typically contains the class and detail message ofcause
).- Parameters:
cause
- The exception's cause.
-