Package org.opentcs.access
Klasse KernelException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.opentcs.access.KernelException
- Alle implementierten Schnittstellen:
Serializable
- Bekannte direkte Unterklassen:
ResourceAllocationException
An exception thrown by the openTCS kernel.
- Siehe auch:
-
Konstruktorübersicht
KonstruktorBeschreibungConstructs a new instance with no detail message.KernelException
(String message) Constructs a new instance with the specified detail message.KernelException
(String message, Throwable cause) Constructs a new instance with the specified detail message and cause.KernelException
(Throwable cause) Constructs a new instance with the specified cause and a detail message of(cause == null ?
-
Methodenübersicht
Von Klasse geerbte Methoden java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Konstruktordetails
-
KernelException
public KernelException()Constructs a new instance with no detail message. -
KernelException
Constructs a new instance with the specified detail message.- Parameter:
message
- The detail message.
-
KernelException
Constructs a new instance with the specified detail message and cause.- Parameter:
message
- The detail message.cause
- The exception's cause.
-
KernelException
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
).- Parameter:
cause
- The exception's cause.
-