Package org.hippoecm.hst.core.container
Class ModuleNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.hippoecm.hst.core.container.ModuleNotFoundException
-
- All Implemented Interfaces:
Serializable
public class ModuleNotFoundException extends RuntimeException
TheModuleNotFoundException
class defines a exception for not found addon module- Version:
- $Id$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ModuleNotFoundException()
Constructs a new ModuleNotFoundException exception.ModuleNotFoundException(String message)
Constructs a new ModuleNotFoundException exception with the given message.ModuleNotFoundException(String msg, Throwable nested)
Constructs a new ModuleNotFoundException exception when the container needs to do the following: throw an exception include the "nested" exception include a description messageModuleNotFoundException(Throwable nested)
Constructs a new ModuleNotFoundException 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
-
ModuleNotFoundException
public ModuleNotFoundException()
Constructs a new ModuleNotFoundException exception.
-
ModuleNotFoundException
public ModuleNotFoundException(String message)
Constructs a new ModuleNotFoundException exception with the given message.- Parameters:
message
- the exception message
-
ModuleNotFoundException
public ModuleNotFoundException(Throwable nested)
Constructs a new ModuleNotFoundException exception with the nested exception.- Parameters:
nested
- the nested exception
-
ModuleNotFoundException
public ModuleNotFoundException(String msg, Throwable nested)
Constructs a new ModuleNotFoundException 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
-
-