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