java/sql-dk/src/info/globalcode/sql/dk/configuration/FormatterDefinition.java
branchv_0
changeset 160 84ea4a819fb2
parent 155 eb3676c6929b
child 188 54bacc7ed42b
--- 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) {