1 32 33 package com.knowgate.dataobjs; 34 35 import java.lang.Exception ; 36 37 42 public final class DBException extends Exception { 43 44 public DBException() { 45 iExcepCode = 0; 46 } 47 48 public DBException(String sMsg) { 49 super(sMsg); 50 iExcepCode = 0; 51 } 52 53 public int getExceptionCode() { 54 return iExcepCode; 55 } 56 57 public void setExceptionCode(int iCode) { 58 iExcepCode = iCode; 59 } 60 61 private int iExcepCode; 62 } | Popular Tags |