1 21 22 package org.dbunit.database; 23 24 import org.dbunit.dataset.DataSetException; 25 26 42 public class AmbiguousTableNameException extends DataSetException 43 { 44 public AmbiguousTableNameException() 45 { 46 } 47 48 public AmbiguousTableNameException(String msg) 49 { 50 super(msg); 51 } 52 53 public AmbiguousTableNameException(String msg, Throwable e) 54 { 55 super(msg, e); 56 } 57 58 public AmbiguousTableNameException(Throwable e) 59 { 60 super(e); 61 } 62 } 63 64 65 | Popular Tags |