]> git.uio.no Git - ifi-stolz-refaktor.git/blob - software/no.uio.ifi.refaktor/src/no/uio/ifi/refaktor/analyze/collectors/SelectionInvalidException.java
LastStatementOfSelectionEndsInReturnOrThrowChecker: handling labeled and do statements
[ifi-stolz-refaktor.git] / software / no.uio.ifi.refaktor / src / no / uio / ifi / refaktor / analyze / collectors / SelectionInvalidException.java
1 package no.uio.ifi.refaktor.analyze.collectors;
2
3 import no.uio.ifi.refaktor.change.exceptions.RefaktorChangerException;
4
5 public class SelectionInvalidException extends RefaktorChangerException {
6
7         private static final long serialVersionUID = 2095910108405152337L;
8         
9         public SelectionInvalidException() {
10                 this("The selection is invalid.");
11         }
12
13         public SelectionInvalidException(String message) {
14                 super(message);
15         }
16
17 }