1 23 24 package org.objectweb.cjdbc.common.exceptions; 25 26 34 public class AuthenticationException extends CJDBCException 35 { 36 private static final long serialVersionUID = 933382937208867189L; 37 38 41 public AuthenticationException() 42 { 43 super(); 44 } 45 46 51 public AuthenticationException(String message) 52 { 53 super(message); 54 } 55 56 61 public AuthenticationException(Throwable cause) 62 { 63 super(cause); 64 } 65 66 72 public AuthenticationException(String message, Throwable cause) 73 { 74 super(message, cause); 75 } 76 77 } 78 | Popular Tags |