Package org.forgerock.am.config
Class ServiceConfigException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.forgerock.am.config.ServiceConfigException
- All Implemented Interfaces:
Serializable
An exception that indicates there was a problem when using the Service Component Config API.
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new exception withnull
as its detail message.ServiceConfigException
(String message, Throwable cause) Constructs a new exception with the specified detail message and cause.ServiceConfigException
(Throwable cause) Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) . -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ServiceConfigException
public ServiceConfigException()Constructs a new exception withnull
as its detail message. -
ServiceConfigException
Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) .- Parameters:
cause
- The cause.
-
ServiceConfigException
Constructs a new exception with the specified detail message and cause.- Parameters:
message
- The detail message.cause
- The cause.
-