]> git.uio.no Git - ifi-stolz-refaktor.git/blobdiff - case-study/refaktor-before/src/no/uio/ifi/refaktor/exceptions/RefaktorException.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / refaktor-before / src / no / uio / ifi / refaktor / exceptions / RefaktorException.java
diff --git a/case-study/refaktor-before/src/no/uio/ifi/refaktor/exceptions/RefaktorException.java b/case-study/refaktor-before/src/no/uio/ifi/refaktor/exceptions/RefaktorException.java
new file mode 100644 (file)
index 0000000..2cc830d
--- /dev/null
@@ -0,0 +1,18 @@
+package no.uio.ifi.refaktor.exceptions;
+
+public class RefaktorException extends RuntimeException {
+
+       private static final long serialVersionUID = -8828307918778882182L;
+
+       public RefaktorException(String message) {
+               super(message);
+       }
+
+       public RefaktorException(Throwable e) {
+               super(e);
+       }
+
+       public RefaktorException(String message, Throwable cause) {
+               super(message, cause);
+       }
+}