1 36 package org.columba.ristretto.auth; 37 38 48 public class AuthenticationException extends Exception { 49 50 53 private static final long serialVersionUID = 1L; 54 55 59 public AuthenticationException() { 60 super(); 61 } 62 63 68 public AuthenticationException(String message) { 69 super(message); 70 } 71 72 73 78 public AuthenticationException(Throwable cause) { 79 super(cause); 80 } 81 82 88 public AuthenticationException(String message, Throwable cause) { 89 super(message, cause); 90 } 91 92 } 93 | Popular Tags |