summaryrefslogtreecommitdiff
path: root/connectivity/org/hsqldb/lib/FileSystemRuntimeException.java
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/org/hsqldb/lib/FileSystemRuntimeException.java')
-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;
- }
}