1 package yarfraw.core.datamodel;
2
3 /***
4 * Indicates an unexpected error occurs.
5 */
6 public class YarfrawException extends Exception{
7
8 private static final long serialVersionUID = 1L;
9 public YarfrawException(String message){
10 super(message);
11 }
12
13 public YarfrawException(String message, Throwable t){
14 super(message, t);
15 }
16 }