HammurapiException.java
Package: org.hammurapi
Results
Date | 2007/07/27 |
Codebase | 219 |
Reviews | 327 |
DPMO | 642 |
Sigma | 4.719 |
Metrics
Name | Number | Min | Avg | Max | Total |
Class complexity | 1 | 4.00 | 4.00 | 4.00 | 4.00 |
Code length | 4 | 1.00 | 1.00 | 1.00 | 4.00 |
File length | 1 | 69.00 | 69.00 | 69.00 | 69.00 |
Operation complexity | 4 | 1.00 | 1.00 | 1.00 | 4.00 |
Work order | 1 | 64.60 | 64.60 | 64.60 | 64.60 |
Violations
# | Line | Column | Name | Severity | Description |
1 | 24 | 1 | ER-023 | 3 | Packages should begin with [] |
2 | 33 | 1 | ER-049 | 2 | Unify logging strategy - define individual logger for class |
3 | 38 | 9 | ER-113 | 2 | Unused private/local variables |
-
JavaDoc
-
HammurapiException
1
23
24package org.hammurapi;
25
26import com.pavelvlasov.Exception;
27
28
33public class HammurapiException extends Exception {
34
35
38 private static final long serialVersionUID = -4966697008538116437L;
39
40
43 public HammurapiException() {
44 super();
45 }
46
47
50 public HammurapiException(String message) {
51 super(message);
52 }
53
54
58 public HammurapiException(String message, Throwable cause) {
59 super(message, cause);
60 }
61
62
65 public HammurapiException(Throwable cause) {
66 super(cause);
67 }
68}
69
70
Hammurapi 3 Copyright © 2004 Hammurapi Group. All Rights Reserved.