Subversion Repositories bacoAlunos

Rev

Rev 2009 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2009 es 1
package pt.estgp.es.exemplos.hibernate.security.logic;
2
 
3
/**
4
 * Created by jorgemachado on 23/10/18.
5
 */
6
public class NotAuthenticatedException extends AccessDeniedException
7
{
8
 
9
    public NotAuthenticatedException() {
10
        super();
11
    }
12
 
13
    public NotAuthenticatedException(1.5.0/docs/api/java/lang/String.html">String message) {
14
        super(message);
15
    }
16
 
17
    public NotAuthenticatedException(1.5.0/docs/api/java/lang/String.html">String message, 1.5.0/docs/api/java/lang/Throwable.html">Throwable cause) {
18
        super(message, cause);
19
    }
20
 
21
    public NotAuthenticatedException(1.5.0/docs/api/java/lang/Throwable.html">Throwable cause) {
22
        super(cause);
23
    }
24
 
25
    public NotAuthenticatedException(1.5.0/docs/api/java/lang/String.html">String message, 1.5.0/docs/api/java/lang/Throwable.html">Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
26
        super(message, cause, enableSuppression, writableStackTrace);
27
    }
2069 es 28
 
29
    public 1.5.0/docs/api/java/lang/String.html">String toString(){
30
        return "Não está autenticado";
31
    }
32
 
2009 es 33
}