1 package guru.mikelue.jdut.datagrain;
2
3 /**
4 * Represents the exception thrown by {@link DataRow#validate}.
5 */
6 public class DataRowException extends Exception {
7 private final static long serialVersionUID = 1L;
8
9 public DataRowException(Throwable t)
10 {
11 super(t);
12 }
13 public DataRowException(String message)
14 {
15 super(message);
16 }
17 }