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
public class ServiceConfigException extends RuntimeException
An exception that indicates there was a problem when using the Service Component Config API.- See Also:
 - Serialized Form
 
 
- 
- 
Constructor Summary
Constructors Constructor Description ServiceConfigException()Constructs a new exception withnullas 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 Detail
- 
ServiceConfigException
public ServiceConfigException()
Constructs a new exception withnullas its detail message. 
- 
ServiceConfigException
public ServiceConfigException(Throwable cause)
Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) .- Parameters:
 cause- The cause.
 
 - 
 
 -