aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/main/com/jantuomi/tunkki/exception/types/TunkkiError.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/main/com/jantuomi/tunkki/exception/types/TunkkiError.java b/src/main/com/jantuomi/tunkki/exception/types/TunkkiError.java
index 0124d37..62c2114 100644
--- a/src/main/com/jantuomi/tunkki/exception/types/TunkkiError.java
+++ b/src/main/com/jantuomi/tunkki/exception/types/TunkkiError.java
@@ -25,16 +25,11 @@ abstract public class TunkkiError extends Exception {
NadaError
}
- private static Map<ExceptionType, String> errorTexts = new HashMap<>();
-
-
- private List<String> arguments;
private int line;
private String[] args;
public TunkkiError(int line, String... args) {
super();
- this.arguments = Arrays.asList(args);
this.line = line;
this.args = args;
}
@@ -65,8 +60,4 @@ abstract public class TunkkiError extends Exception {
public void printStackTrace() {
System.err.println(completeMessage());
}
-
- public List<String> getArguments() {
- return this.arguments;
- }
}