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
|
1package biz.hammurapi.properties;
2
3
4
5
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