]> git.uio.no Git - ifi-stolz-refaktor.git/blame - case-study/refaktor-after/src/no/uio/ifi/refaktor/analyze/exceptions/NoTargetFoundException.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / refaktor-after / src / no / uio / ifi / refaktor / analyze / exceptions / NoTargetFoundException.java
CommitLineData
1b2798f6
EK
1package no.uio.ifi.refaktor.analyze.exceptions;
2
3public class NoTargetFoundException extends RefaktorAnalyzerException {
4
5 private static final long serialVersionUID = -3868750080109079545L;
6
7 public NoTargetFoundException() {
8 this("No possible target was found for the refactoring.");
9 }
10
11 public NoTargetFoundException(String message) {
12 super(message);
13 }
14
15 public NoTargetFoundException(Throwable e) {
16 super(e);
17 }
18}