From ee6de76ea79d5e8400670dcf441f481e291d40e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lars=20K=C3=BChne?= Date: Mon, 30 Dec 2002 15:29:28 +0000 Subject: [PATCH] fixed error message --- .../com/puppycrawl/tools/checkstyle/api/AutomaticBean.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/checkstyle/com/puppycrawl/tools/checkstyle/api/AutomaticBean.java b/src/checkstyle/com/puppycrawl/tools/checkstyle/api/AutomaticBean.java index f4bc95bd8..92263df35 100644 --- a/src/checkstyle/com/puppycrawl/tools/checkstyle/api/AutomaticBean.java +++ b/src/checkstyle/com/puppycrawl/tools/checkstyle/api/AutomaticBean.java @@ -168,7 +168,7 @@ public class AutomaticBean implements Configurable, Contextualizable } catch (InvocationTargetException e) { throw new CheckstyleException( - "Cannot set property '" + key + "' in module" + "Cannot set property '" + key + "' in module " + aConfiguration.getName() + " to '" + value + "': " + e.getTargetException().getMessage()); }