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
public class ComponentsException extends RuntimeException
TheComponentsException
class defines a exception while finding component(s) from the component manager.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ComponentsException()
Constructs 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 Detail
-
ComponentsException
public ComponentsException()
Constructs a new ComponentsException exception.
-
ComponentsException
public ComponentsException(String message)
Constructs a new ComponentsException exception with the given message.- Parameters:
message
- the exception message
-
ComponentsException
public ComponentsException(Throwable nested)
Constructs a new ComponentsException exception with the nested exception.- Parameters:
nested
- the nested exception
-
ComponentsException
public 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 message
- Parameters:
msg
- the exception messagenested
- the nested exception
-
-