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