Dear Mr. Harper,
Thank you for the response!
I set the path inside the ActionError constructor as follows:
public ActionError() {
m_resource = ResourceBundle.getBundle("/error.properties");
}
I thought the "/" meant the root directory inside
CATALINA_HOME/WEB-INF/classes/.
Since, my error.properties file is going inside the
CATALINA_HOME/WEB-INF/classes/org/coffeebreak/wrapper/ directory via
my Ant build script, I rewrote the code inside the constructor as:
public ActionError() {
// I removed the slash
m_resource = ResourceBundle.getBundle("error.properties");
}
And then it gave me that Missing exception...
What am I possibly doing wrong?
Sincerely,
James Dekker
---------------------------------------------------------------------
To start a new topic, e-mail: [email protected]
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]