diff -r 9632b23df30c -r 84ea4a819fb2 java/sql-dk/src/info/globalcode/sql/dk/configuration/FormatterDefinition.java --- a/java/sql-dk/src/info/globalcode/sql/dk/configuration/FormatterDefinition.java Wed Jan 15 21:06:12 2014 +0100 +++ b/java/sql-dk/src/info/globalcode/sql/dk/configuration/FormatterDefinition.java Wed Jan 15 21:26:15 2014 +0100 @@ -105,7 +105,7 @@ throw new FormatterException("Formatter " + instance + " does not implement the " + Formatter.class.getName() + " interface"); } } catch (ClassNotFoundException e) { - throw new FormatterException("No formatter class with name: " + className, e); + throw new FormatterException("Formatter class does not exist: " + className, e); } catch (NoSuchMethodException e) { throw new FormatterException("Formatter class with no valid constructor: " + className, e); } catch (InstantiationException | IllegalAccessException | InvocationTargetException e) {