Lucio Lelii 2018-12-13 10:40:49 +00:00
parent 79cdb2f97c
commit aec604e607
2 changed files with 37 additions and 6 deletions

View File

@ -33,12 +33,7 @@
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.8.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>

View File

@ -0,0 +1,36 @@
package org.gcube.common.authorization.library.exception;
public class AuthorizationException extends RuntimeException{
/**
*
*/
private static final long serialVersionUID = 1L;
public AuthorizationException() {
super();
// TODO Auto-generated constructor stub
}
public AuthorizationException(String message, Throwable cause, boolean enableSuppression,
boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
// TODO Auto-generated constructor stub
}
public AuthorizationException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
public AuthorizationException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public AuthorizationException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
}