Class SandboxException.SandboxRuntimeException

All Implemented Interfaces:
Serializable
Enclosing class:
SandboxException

public static class SandboxException.SandboxRuntimeException extends SandboxException
Thrown for general sandbox runtime failures not covered by a more specific subclass.
See Also:
  • Constructor Details

    • SandboxRuntimeException

      public SandboxRuntimeException(SandboxErrorCode errorCode, String message)
      Creates a runtime exception with an error code and message.
      Parameters:
      errorCode - the error code classifying the failure
      message - human-readable description
    • SandboxRuntimeException

      public SandboxRuntimeException(SandboxErrorCode errorCode, String message, Throwable cause)
      Creates a runtime exception with an error code, message, and cause.
      Parameters:
      errorCode - the error code classifying the failure
      message - human-readable description
      cause - the underlying cause
    • SandboxRuntimeException

      public SandboxRuntimeException(String message, Throwable cause)
      Creates a runtime exception with a message and cause.
      Parameters:
      message - human-readable description
      cause - the underlying cause