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