In Struts 1.3, each error message is represented as
-
ActionError
-
ActionMessage
-
ErrorMessage
-
ActionErrors
B
Correct answer
Explanation
In Struts 1.3, ActionMessage is the class used to represent individual messages including error messages. ActionErrors is the container/collection that holds multiple ActionMessage objects. ActionError was deprecated in favor of ActionMessage to unify the handling of all types of messages. Option C ErrorMessage is not a Struts class. Option D ActionErrors is the collection, not individual message representation.