aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/com/jantuomi/tunkki/exception/ExceptionManager.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/com/jantuomi/tunkki/exception/ExceptionManager.java')
-rw-r--r--src/main/com/jantuomi/tunkki/exception/ExceptionManager.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/com/jantuomi/tunkki/exception/ExceptionManager.java b/src/main/com/jantuomi/tunkki/exception/ExceptionManager.java
index 7c7a6b5..9cfdd2e 100644
--- a/src/main/com/jantuomi/tunkki/exception/ExceptionManager.java
+++ b/src/main/com/jantuomi/tunkki/exception/ExceptionManager.java
@@ -14,8 +14,8 @@ public class ExceptionManager {
return instance;
}
- public static void raise(BorkError.ExceptionType ex, int line, String... args) throws BorkError {
- BorkError e = new BorkError(ex, line, args);
+ public static void raise(TunkkiError.ExceptionType ex, int line, String... args) throws TunkkiError {
+ TunkkiError e = new TunkkiError(ex, line, args);
throw e;
}
}