blob: 2d9207d41d3b91f290064cbe5dd5371fb7552732 [file] [log] [blame]
Stuart McCullochd4826102012-06-26 16:34:24 +00001package aQute.lib.properties;
2
3public class BadLocationException extends Exception {
4
5 private static final long serialVersionUID = 1L;
6
7 public BadLocationException() {
8 super();
9 }
10
11 public BadLocationException(String var0) {
12 super(var0);
13 }
14}