X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=source%2Fmir%2Futil%2FParameterExpander.java;h=2418ae302f13055bb6e1146bcd064f7c0c65235d;hb=62f2f914058c39865ff038e6281b045b05f598cb;hp=b58fa4aa0661dfb73658e48e861766f01d1ff016;hpb=d6d7bc8f2502aa0cb7e3a53fd63004effb44c7fc;p=mir.git diff --git a/source/mir/util/ParameterExpander.java b/source/mir/util/ParameterExpander.java index b58fa4aa..2418ae30 100755 --- a/source/mir/util/ParameterExpander.java +++ b/source/mir/util/ParameterExpander.java @@ -593,7 +593,7 @@ public class ParameterExpander { currentValue = ((Map) currentValue).get(qualifier); } else { - throw new RuntimeException("cannot reference into anything other than a map"); + throw new RuntimeException("cannot reference into anything other than a map ('"+qualifier+"')"); } } else if (token instanceof IdentifierToken) { @@ -604,7 +604,7 @@ public class ParameterExpander { currentValue = ((Map) currentValue).get(qualifier); } else { - throw new RuntimeException("cannot reference into anything other than a map"); + throw new RuntimeException("cannot reference into anything other than a map ('"+qualifier+"')"); } } else if (token instanceof LeftParenthesisToken) {