1 /*
2 * Created on 13-feb-2006
3 *
4 */
5 package org.state4j.exceptions;
6
7
8 public class GenericErrorException extends LogicErrorException {
9 public GenericErrorException() {
10 super();
11 // @TODO Auto-generated constructor stub
12 }
13
14 public GenericErrorException(String arg0) {
15 super(arg0);
16 // @TODO Auto-generated constructor stub
17 }
18
19 public GenericErrorException(String arg0, Throwable arg1) {
20 super(arg0, arg1);
21 // @TODO Auto-generated constructor stub
22 }
23
24 public GenericErrorException(Throwable arg0) {
25 super(arg0);
26 // @TODO Auto-generated constructor stub
27 }
28 }