Package org.hippoecm.hst.core.container
Class ContainerNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.hippoecm.hst.core.container.ContainerException
-
- org.hippoecm.hst.core.container.ContainerNotFoundException
-
- All Implemented Interfaces:
Serializable
public class ContainerNotFoundException extends ContainerException
TheContainerNotFoundException
class defines a not found exception that an internal container component can throw when it is unable to perform its operation successfully because it cannot find any serviceable content item.- Version:
- $Id$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContainerNotFoundException()
Constructs a new ContainerNotFoundException exception.ContainerNotFoundException(String message)
Constructs a new ContainerNotFoundException exception with the given message.ContainerNotFoundException(String msg, Throwable nested)
Constructs a new ContainerNotFoundException exception when the container needs to do the following: throw an exception include the "nested" exception include a description messageContainerNotFoundException(Throwable nested)
Constructs a new ContainerNotFoundException 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
-
ContainerNotFoundException
public ContainerNotFoundException()
Constructs a new ContainerNotFoundException exception.
-
ContainerNotFoundException
public ContainerNotFoundException(String message)
Constructs a new ContainerNotFoundException exception with the given message.- Parameters:
message
- the exception message
-
ContainerNotFoundException
public ContainerNotFoundException(Throwable nested)
Constructs a new ContainerNotFoundException exception with the nested exception.- Parameters:
nested
- the nested exception
-
ContainerNotFoundException
public ContainerNotFoundException(String msg, Throwable nested)
Constructs a new ContainerNotFoundException 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
-
-