Package org.hippoecm.hst.core.container
Class ContainerSecurityNotAuthorizedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.hippoecm.hst.core.container.ContainerException
org.hippoecm.hst.core.container.ContainerSecurityException
org.hippoecm.hst.core.container.ContainerSecurityNotAuthorizedException
- All Implemented Interfaces:
Serializable
The
ContainerSecurityNotAuthorizedException
class defines a security exception
for unauthorized site resource access from an authenticated user.- Version:
- $Id$
- See Also:
-
Constructor Summary
ConstructorDescriptionConstructs a new ContainerSecurityNotAuthorizedException exception.Constructs a new ContainerSecurityNotAuthorizedException exception with the given message.ContainerSecurityNotAuthorizedException
(String msg, Throwable nested) Constructs a new ContainerSecurityNotAuthorizedException exception when the container needs to do the following: throw an exception include the "nested" exception include a description messageConstructs a new ContainerSecurityNotAuthorizedException 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
-
ContainerSecurityNotAuthorizedException
public ContainerSecurityNotAuthorizedException()Constructs a new ContainerSecurityNotAuthorizedException exception. -
ContainerSecurityNotAuthorizedException
Constructs a new ContainerSecurityNotAuthorizedException exception with the given message.- Parameters:
message
- the exception message
-
ContainerSecurityNotAuthorizedException
Constructs a new ContainerSecurityNotAuthorizedException exception with the nested exception.- Parameters:
nested
- the nested exception
-
ContainerSecurityNotAuthorizedException
Constructs a new ContainerSecurityNotAuthorizedException 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
-