HammurapiNonConsumableException.java
Package: org.hammurapi
Results
Date | 2007/07/27 |
Codebase | 207 |
Reviews | 314 |
DPMO | 700 |
Sigma | 4.694 |
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 | 66.00 | 66.00 | 66.00 | 66.00 |
Operation complexity | 4 | 1.00 | 1.00 | 1.00 | 4.00 |
Violations
# | Line | Column | Name | Severity | Description |
1 | 23 | 1 | ER-023 | 3 | Packages should begin with [] |
2 | 55 | 81 | ER-036 | 3 | Line is too long |
3 | 30 | 1 | ER-049 | 2 | Unify logging strategy - define individual logger for class |
4 | 35 | 9 | ER-113 | 2 | Unused private/local variables |
-
JavaDoc
-
HammurapiNonConsumableException
1
23package org.hammurapi;
24
25
30public class HammurapiNonConsumableException extends HammurapiException {
31
32
35 private static final long serialVersionUID = -2846793999906765410L;
36
37
40 public HammurapiNonConsumableException() {
41 super();
42 }
43
44
47 public HammurapiNonConsumableException(String message) {
48 super(message);
49 }
50
51
55 public HammurapiNonConsumableException(String message, Throwable cause) {
56 super(message, cause);
57 }
58
59
62 public HammurapiNonConsumableException(Throwable cause) {
63 super(cause);
64 }
65}
66
67
Hammurapi 3 Copyright © 2004 Hammurapi Group. All Rights Reserved.