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