summaryrefslogtreecommitdiff
path: root/connectivity/org
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-19 16:03:41 +0200
committerNoel Grandin <noel@peralex.com>2015-01-05 08:23:29 +0200
commit43cc8ad33e815522e2b23ac87a4a9c4526cd85c9 (patch)
treeb042266508f8b084bc7bbe9cc57250a971311099 /connectivity/org
parentcfcbe2e44e33f4a60e70006ff5e1cbb9aa2adceb (diff)
java: remove dead code
found by UCDetector Change-Id: I6b0f49529379072da566e927b86815f173e7a90b
Diffstat (limited to 'connectivity/org')
-rw-r--r--connectivity/org/hsqldb/lib/FileSystemRuntimeException.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/connectivity/org/hsqldb/lib/FileSystemRuntimeException.java b/connectivity/org/hsqldb/lib/FileSystemRuntimeException.java
index 5830d5eb48f2..6b3d289a6d4d 100644
--- a/connectivity/org/hsqldb/lib/FileSystemRuntimeException.java
+++ b/connectivity/org/hsqldb/lib/FileSystemRuntimeException.java
@@ -34,29 +34,8 @@ public class FileSystemRuntimeException extends java.lang.RuntimeException {
public static final int fileAccessRemoveElementFailed = 1;
public static final int fileAccessRenameElementFailed = 2;
- private final int errorCode;
-
- public FileSystemRuntimeException(int _errorCode) {
- super();
- errorCode = _errorCode;
- }
-
- public FileSystemRuntimeException(String _message, int _errorCode) {
- super(_message);
- errorCode = _errorCode;
- }
-
- public FileSystemRuntimeException(String _message, java.lang.Throwable _cause, int _errorCode) {
- super(_message, _cause);
- errorCode = _errorCode;
- }
-
public FileSystemRuntimeException(java.lang.Throwable _cause, int _errorCode) {
super(_cause);
- errorCode = _errorCode;
}
- public final int getErrorCode() {
- return errorCode;
- }
}