PropertySetException.java

biz/hammurapi/properties/PropertySetException.java

Violations

Inspector Message Severity Location
Java Inspector 048 Copyrights information should be present in each file. 1
Java Inspector 089 Undocumented constructor 2 10:9
Java Inspector 089 Undocumented constructor 2 14:9
Java Inspector 089 Undocumented constructor 2 18:9

Source code

1package biz.hammurapi.properties;
2
3/**
4 * Wrapper exception if property set operation fails.
5 * @author Pavel
6 *
7 */
8public class PropertySetException extends Exception {
9
10 public PropertySetException(String message) {
11 super(message);
12 }
13
14 public PropertySetException(Throwable cause) {
15 super(cause);
16 }
17
18 public PropertySetException(String message, Throwable cause) {
19 super(message, cause);
20 }
21
22}
23