java/sql-dk/src/info/globalcode/sql/dk/configuration/FormatterDefinition.java
branchv_0
changeset 160 84ea4a819fb2
parent 155 eb3676c6929b
child 188 54bacc7ed42b
     1.1 --- a/java/sql-dk/src/info/globalcode/sql/dk/configuration/FormatterDefinition.java	Wed Jan 15 21:06:12 2014 +0100
     1.2 +++ b/java/sql-dk/src/info/globalcode/sql/dk/configuration/FormatterDefinition.java	Wed Jan 15 21:26:15 2014 +0100
     1.3 @@ -105,7 +105,7 @@
     1.4  				throw new FormatterException("Formatter " + instance + " does not implement the " + Formatter.class.getName() + " interface");
     1.5  			}
     1.6  		} catch (ClassNotFoundException e) {
     1.7 -			throw new FormatterException("No formatter class with name: " + className, e);
     1.8 +			throw new FormatterException("Formatter class does not exist: " + className, e);
     1.9  		} catch (NoSuchMethodException e) {
    1.10  			throw new FormatterException("Formatter class with no valid constructor: " + className, e);
    1.11  		} catch (InstantiationException | IllegalAccessException | InvocationTargetException e) {