1 package net.sf.msplice.property;
2
3 import net.sf.msplice.SpliceException;
4
5 @SuppressWarnings("serial")
6 public class PropertyGetException extends SpliceException {
7
8 public PropertyGetException() {
9 super();
10 }
11
12 public PropertyGetException(String message, Throwable cause) {
13 super(message, cause);
14 }
15
16 public PropertyGetException(String message) {
17 super(message);
18 }
19
20 public PropertyGetException(Throwable cause) {
21 super(cause);
22 }
23
24
25
26 }