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