1 18 19 package org.apache.struts.action; 20 21 import java.io.Serializable ; 22 23 43 public class ActionErrors extends ActionMessages implements Serializable { 44 45 47 53 public static final String GLOBAL_ERROR = "org.apache.struts.action.GLOBAL_ERROR"; 54 55 57 60 public ActionErrors() { 61 super(); 62 } 63 64 72 public ActionErrors(ActionErrors messages) { 73 super(messages); 74 } 75 76 84 public void add(String property, ActionError error) { 85 86 super.add(property, error); 87 88 } 89 90 } 91 | Popular Tags |