1 21 22 package org.dbunit.dataset; 23 24 import org.dbunit.DatabaseUnitException; 25 26 31 public class DataSetException extends DatabaseUnitException 32 { 33 public DataSetException() 34 { 35 } 36 37 public DataSetException(String msg) 38 { 39 super(msg); 40 } 41 42 public DataSetException(String msg, Throwable e) 43 { 44 super(msg, e); 45 } 46 47 public DataSetException(Throwable e) 48 { 49 super(e); 50 } 51 } 52 53 54 55 56 57 | Popular Tags |