diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2016-07-26 21:46:30 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2016-07-26 21:46:30 +0300 |
| commit | 22ec5b89f053830f5ed3798abc28bd23ff7ca6a2 (patch) | |
| tree | c143098b20f757181f693fd6955938b302778f0a /src/main/com/jantuomi/tunkki/exception/ExceptionManager.java | |
| parent | 10d98039cbd7b8c2dae808761705ce64de2c69f6 (diff) | |
Rename BorkError to TunkkiError
Diffstat (limited to 'src/main/com/jantuomi/tunkki/exception/ExceptionManager.java')
| -rw-r--r-- | src/main/com/jantuomi/tunkki/exception/ExceptionManager.java | 4 |
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; } } |
