Klasse KernelRuntimeException

Alle implementierten Schnittstellen:
Serializable
Bekannte direkte Unterklassen:
CredentialsException, ObjectExistsException, ObjectUnknownException, ServiceUnavailableException, TransportOrderAssignmentException

public class KernelRuntimeException extends RuntimeException implements Serializable
A runtime exception thrown by the openTCS kernel.
Siehe auch:
  • Konstruktordetails

    • KernelRuntimeException

      public KernelRuntimeException()
      Constructs a new instance with no detail message.
    • KernelRuntimeException

      public KernelRuntimeException(String message)
      Constructs a new instance with the specified detail message.
      Parameter:
      message - The detail message.
    • KernelRuntimeException

      public KernelRuntimeException(String message, Throwable cause)
      Constructs a new instance with the specified detail message and cause.
      Parameter:
      message - The detail message.
      cause - The exception's cause.
    • KernelRuntimeException

      public KernelRuntimeException(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 of cause).
      Parameter:
      cause - The exception's cause.