]> git.uio.no Git - ifi-stolz-refaktor.git/blob - case-study/refaktor-after/src/no/uio/ifi/refaktor/exceptions/RefaktorException.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / refaktor-after / src / no / uio / ifi / refaktor / exceptions / RefaktorException.java
1 package no.uio.ifi.refaktor.exceptions;
2
3 public class RefaktorException extends RuntimeException {
4
5         private static final long serialVersionUID = -8828307918778882182L;
6
7         public RefaktorException(String message) {
8                 super(message);
9         }
10
11         public RefaktorException(Throwable e) {
12                 super(e);
13         }
14
15         public RefaktorException(String message, Throwable cause) {
16                 super(message, cause);
17         }
18 }