[seam-commits] Seam SVN: r7204 - trunk/src/main/org/jboss/seam/deployment.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Wed Jan 23 08:49:12 EST 2008
Author: pete.muir at 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);
More information about the seam-commits
mailing list