00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 package org.openmobileis.common.user;
00026
00027 import org.openmobileis.common.util.exception.OpenMISException;
00028 import org.openmobileis.common.util.log.LogServices;
00029
00037 public class UserAlreadyExistException extends OpenMISException {
00038 static final long serialVersionUID = 5521257935120563452L;
00039
00043 public UserAlreadyExistException(String msg) {
00044 super(msg);
00045
00046 }
00047
00052 public UserAlreadyExistException(String msg, int logPriority) {
00053 super(msg, logPriority);
00054
00055 }
00056
00061 public UserAlreadyExistException(String msg, Throwable t) {
00062 super(msg, t);
00063
00064 }
00065
00071 public UserAlreadyExistException(String msg, Throwable t, int logPriority) {
00072 super(msg, t, logPriority);
00073
00074 }
00075
00079 public UserAlreadyExistException() {
00080 super();
00081
00082 }
00083
00087 public UserAlreadyExistException(int logPriority) {
00088 super(logPriority);
00089
00090 }
00091
00095 public UserAlreadyExistException(Throwable t) {
00096 super(t);
00097
00098 }
00099
00104 public UserAlreadyExistException(Throwable t, int logPriority) {
00105 super(t, logPriority);
00106
00107 }
00108
00109
00110
00111
00112 public int getService() {
00113
00114 return LogServices.DEFAULTSERVICE;
00115 }
00116
00117 }