Multiple choice technology web technology

In Struts 1.3, each error message is represented as

  1. ActionError

  2. ActionMessage

  3. ErrorMessage

  4. ActionErrors

Reveal answer Fill a bubble to check yourself
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.