Skip to content

Commit 1531303

Browse files
committed
Add missing space in exception message.
1 parent 23608fc commit 1531303

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/owasp/esapi/util/ObjFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public static <T> T make(String className, String typeName) throws Configuration
9292
// The class is meant to be singleton, however, the SecurityManager restricts us from calling the
9393
// getInstance method on the class, thus this is a configuration issue and a ConfigurationException
9494
// is thrown
95-
throw new ConfigurationException( "The SecurityManager has restricted the object factory from getting a reference to the singleton implementation" +
95+
throw new ConfigurationException( "The SecurityManager has restricted the object factory from getting a reference to the singleton implementation " +
9696
"of the class [" + className + "]", e );
9797
}
9898

0 commit comments

Comments
 (0)