jcscoobyrs 2005/10/07 17:16:59
Modified: modules/core/src/java/org/openejb/cli CommandFinder.java
Log:
Updated an error message.
Revision Changes Path
1.2 +1 -1
openejb1/modules/core/src/java/org/openejb/cli/CommandFinder.java
Index: CommandFinder.java
===================================================================
RCS file:
/scm/openejb/openejb1/modules/core/src/java/org/openejb/cli/CommandFinder.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- CommandFinder.java 7 Oct 2005 21:14:26 -0000 1.1
+++ CommandFinder.java 7 Oct 2005 21:16:59 -0000 1.2
@@ -27,7 +27,7 @@
if (in == null) {
in =
CommandFinder.class.getClassLoader().getResourceAsStream(uri);
if (in == null) {
- throw new IOException("Could not find factory class for
resource: " + uri);
+ throw new IOException("Could not find command in : " + uri);
}
}