Mercurial > repos > pfrommolt > ngsrich
comparison NGSrich_0.5.5/src/exceptions/RangeFormatException.java @ 0:89ad0a9cca52 default tip
Uploaded
author | pfrommolt |
---|---|
date | Mon, 21 Nov 2011 08:12:19 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:89ad0a9cca52 |
---|---|
1 package exceptions; | |
2 | |
3 public class RangeFormatException extends RangeException { | |
4 | |
5 private static final long serialVersionUID = -7603714654119196278L; | |
6 | |
7 public RangeFormatException(){ | |
8 super("The range limits are misformatted."); | |
9 } | |
10 | |
11 public RangeFormatException(String message){ | |
12 super( message + "\n" + | |
13 "The range limits are misformatted."); | |
14 } | |
15 } |