1 64 65 package com.jcorporate.expresso.core.dataobjects; 66 67 68 75 76 public class DataException extends com.jcorporate.expresso.core.db.DBException { 77 78 81 public DataException() { 82 super(); 83 } 84 85 90 public DataException(String s) { 91 super(s); 92 } 93 94 98 public DataException(String s, String newDatasourceMessage) { 99 super(s, newDatasourceMessage); 100 } 101 102 109 public DataException(String s, Throwable t) { 110 super(s, t); 111 } 112 113 119 public DataException(Throwable t) { 120 super(t); 121 } 122 } | Popular Tags |