Package org.hippoecm.hst.core.container
Class ComponentsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.hippoecm.hst.core.container.ComponentsException
- All Implemented Interfaces:
Serializable
The
ComponentsException
class defines a exception
while finding component(s) from the component manager.- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new ComponentsException exception.ComponentsException
(String message) Constructs a new ComponentsException exception with the given message.ComponentsException
(String msg, Throwable nested) Constructs a new ComponentsException exception when the container needs to do the following: throw an exception include the "nested" exception include a description messageComponentsException
(Throwable nested) Constructs a new ComponentsException exception with the nested exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ComponentsException
public ComponentsException()Constructs a new ComponentsException exception. -
ComponentsException
Constructs a new ComponentsException exception with the given message.- Parameters:
message
- the exception message
-
ComponentsException
Constructs a new ComponentsException exception with the nested exception.- Parameters:
nested
- the nested exception
-
ComponentsException
Constructs a new ComponentsException exception when the container needs to do the following:- throw an exception
- include the "nested" exception
- include a description message
- Parameters:
msg
- the exception messagenested
- the nested exception
-