1 64 65 package com.jcorporate.expresso.core.db.datasource; 66 67 import com.jcorporate.expresso.core.db.DBException; 68 69 70 75 public class DSException extends DBException { 76 77 80 public DSException() { 81 super(); 82 } 83 84 89 public DSException(String s) { 90 super(s); 91 } 92 93 97 public DSException(String s, String newDatasourceMessage) { 98 super(s, newDatasourceMessage); 99 } 100 101 108 public DSException(String s, Throwable t) { 109 super(s, t); 110 } 111 112 118 public DSException(Throwable t) { 119 super(t); 120 } 121 } | Popular Tags |