Class AccessDeniedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.ametys.runtime.authentication.AccessDeniedException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
EditContentAccessDeniedException
public class AccessDeniedException extends RuntimeException
Exception representing a 403 response- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AccessDeniedException()
Constructs a new AccessDeniedException.AccessDeniedException(String message)
Constructs a new AccessDeniedException with the specified cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
AccessDeniedException
public AccessDeniedException()
Constructs a new AccessDeniedException.
-
AccessDeniedException
public AccessDeniedException(String message)
Constructs a new AccessDeniedException with the specified cause.- Parameters:
message
- the cause of the exception.
-
-