1 21 22 package org.continuent.sequoia.common.exceptions; 23 24 32 public class AuthenticationException extends SequoiaException 33 { 34 private static final long serialVersionUID = 933382937208867189L; 35 36 39 public AuthenticationException() 40 { 41 super(); 42 } 43 44 49 public AuthenticationException(String message) 50 { 51 super(message); 52 } 53 54 59 public AuthenticationException(Throwable cause) 60 { 61 super(cause); 62 } 63 64 70 public AuthenticationException(String message, Throwable cause) 71 { 72 super(message, cause); 73 } 74 75 } 76 | Popular Tags |