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
00026 package org.openmobileis.common.util.exception;
00027
00028 import org.openmobileis.common.util.log.LogServices;
00029
00036 public class DatabaseException extends DefaultException {
00037 static final long serialVersionUID = 5521257935120563452L;
00038
00039 public DatabaseException() {
00040 super();
00041 }
00042
00043 public DatabaseException(int priority) {
00044 super(priority);
00045 }
00046
00047 public DatabaseException(String msg) {
00048 super(msg);
00049 }
00050
00051 public DatabaseException(String msg, int priority) {
00052 super(msg, priority);
00053 }
00054
00055 public DatabaseException(String msg, Throwable t) {
00056 super(msg, t);
00057 }
00058
00059 public DatabaseException(String msg, Throwable t, int priority) {
00060 super(msg, t, priority);
00061 }
00062
00063 public DatabaseException(Throwable t) {
00064 super(t);
00065 }
00066
00067 public DatabaseException(Throwable t, int priority) {
00068 super(t, priority);
00069 }
00070
00071 public int getService() {
00072 return LogServices.SERVERSERVICE;
00073 }
00074 }