Author: pete.muir(a)jboss.org
Date: 2008-01-23 08:49:12 -0500 (Wed, 23 Jan 2008)
New Revision: 7204
Modified:
trunk/src/main/org/jboss/seam/deployment/AbstractDeploymentHandler.java
Log:
better
Modified: trunk/src/main/org/jboss/seam/deployment/AbstractDeploymentHandler.java
===================================================================
--- trunk/src/main/org/jboss/seam/deployment/AbstractDeploymentHandler.java 2008-01-23
13:47:39 UTC (rev 7203)
+++ trunk/src/main/org/jboss/seam/deployment/AbstractDeploymentHandler.java 2008-01-23
13:49:12 UTC (rev 7204)
@@ -38,7 +38,7 @@
InputStream stream = classLoader.getResourceAsStream(name);
if (stream == null)
{
- throw new IllegalStateException("Cannot load " + name + " from
" + classLoader + " using getResourceAsStream()");
+ throw new IllegalStateException("Cannot load " + name + " from
" + classLoader + " (using getResourceAsStream() returned null)");
}
DataInputStream dstream = new DataInputStream(stream);
Show replies by date