aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjantuomi <jans.tuomi@gmail.com>2016-08-03 09:11:52 +0300
committerjantuomi <jans.tuomi@gmail.com>2016-08-03 09:54:46 +0300
commit1f41c228222cd3dcd4f746fc9dc1aeffa224fde8 (patch)
tree322b8eb06933e2e84c8342494180226138667e19
parentf3b8e894c1212e0c494601d2ef04f94e4ee1ae7d (diff)
Change TypeError message
-rw-r--r--src/main/com/jantuomi/tunkki/exception/types/TypeTunkkiError.java2
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