]> git.uio.no Git - ifi-stolz-refaktor.git/blame - case-study/refaktor-before/src/no/uio/ifi/refaktor/analyze/exceptions/GenericAnalyzerException.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / refaktor-before / src / no / uio / ifi / refaktor / analyze / exceptions / GenericAnalyzerException.java
CommitLineData
1b2798f6
EK
1package no.uio.ifi.refaktor.analyze.exceptions;
2
3public class GenericAnalyzerException extends RefaktorAnalyzerException {
4
5 private static final long serialVersionUID = -4457268363854876618L;
6
7 public GenericAnalyzerException(String message) {
8 super(message);
9 }
10
11 public GenericAnalyzerException(Throwable e) {
12 super(e);
13 }
14}