public class AgentRuntimeException extends RuntimeException
| Constructor and Description |
|---|
AgentRuntimeException(String message)
Constructs an AgentRuntimeException with the specified detail message.
|
AgentRuntimeException(String message,
Throwable cause)
Constructs a new exception with the specified detail message and cause.
|
AgentRuntimeException(Throwable cause)
Constructs a new exception with the specified cause and a detail message of
{@code (cause==null ?
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic AgentRuntimeException(String message)
message - the String that contains a detailed messagepublic AgentRuntimeException(String message, Throwable cause)
message - the detail message, which is saved for later retrieval by the
Throwable.getMessage() method.cause - the cause, which is saved for later retrieval by the
Throwable.getCause() method. (A null value is permitted,
and indicates that the cause is nonexistent or unknown.)public AgentRuntimeException(Throwable cause)
(cause==null ? null : cause.toString()). This constructor is useful for
exceptions that are little more than wrappers for other throwables.cause - the cause (which is saved for later retrieval by the
Throwable.getCause() method). (A null value is permitted,
and indicates that the cause is nonexistent or unknown.)Copyright © 2022. All rights reserved.