| Severity | 2 |
|---|---|
| Enabled | yes |
| Waivable | |
| Configuration |
Used logger class: org.apache.log4j.Category operation: error |
| Violation |
try {
InputStream is = new FileInputStream(fName);
return is.read();
} catch (java.io.IOException e) {
logger.error(FILE_ERROR_TXT, e);
throw new HammurapiTestCasesException(e);
}
|
| Fix |
try {
InputStream is = new FileInputStream(fName);
return is.read();
} catch (java.io.IOException e) {
logger.error(FILE_ERROR_TXT, e);
throw new HammurapiTestCasesException(e);
}
|