diff options
| author | jantuomi <jans.tuomi@gmail.com> | 2016-08-03 09:11:52 +0300 |
|---|---|---|
| committer | jantuomi <jans.tuomi@gmail.com> | 2016-08-03 09:54:46 +0300 |
| commit | 1f41c228222cd3dcd4f746fc9dc1aeffa224fde8 (patch) | |
| tree | 322b8eb06933e2e84c8342494180226138667e19 | |
| parent | f3b8e894c1212e0c494601d2ef04f94e4ee1ae7d (diff) | |
Change TypeError message
| -rw-r--r-- | src/main/com/jantuomi/tunkki/exception/types/TypeTunkkiError.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/com/jantuomi/tunkki/exception/types/TypeTunkkiError.java b/src/main/com/jantuomi/tunkki/exception/types/TypeTunkkiError.java index a90483c..adf6c78 100644 --- a/src/main/com/jantuomi/tunkki/exception/types/TypeTunkkiError.java +++ b/src/main/com/jantuomi/tunkki/exception/types/TypeTunkkiError.java @@ -10,7 +10,7 @@ public class TypeTunkkiError extends TunkkiError { @Override public String what() { - return "Incompatible types %s and %s."; + return "Incompatible type %s in context: %s."; } @Override |
