aspose file tools
The moose likes Struts and the fly likes ActionError vs. ActionMessges Question Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Frameworks » Struts
Reply Bookmark "ActionError vs. ActionMessges Question" Watch "ActionError vs. ActionMessges Question" New topic
Author

ActionError vs. ActionMessges Question

Scott Updike
Ranch Hand

Joined: Feb 16, 2006
Posts: 92
I have a basic Struts application connected to a MySQL database. At a high level, I have methods in my error handling that captures SQLExceptions and based on the error code, I generate user-friendly error messages. I generate these friendly messages by creating ActionMessages and adding them to the ActionMessage object which is then added to ActionError object with the addErrors method.

My question is, in my catch block, I can access the MySQL error code, but not the message. Basically, if I pass the SQLException into my catch block as (SQLException ex), then ex.getErrorCode has a value but ex.getMessage (as well as ex.getLocalizedMessage) come up null. How do I access the actual message itself?

One other thing: in my html:errors tag on the resulting error page, the MySQL error message appears! Where does that come from? How do I access that message before my screen is generated?

Thanks,
Scott
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: ActionError vs. ActionMessges Question
 
Similar Threads
ActionErrors and error message from legacy system help needed
try..catch block
print StackTrace in finally block
Loading from MessageResources.properties in Struts 2
Exception Handling