1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.apache.commons.jelly;
18
19 /***
20 * <p><code>JellyException</code> is the root of all Jelly exceptions.</p>
21 *
22 * @author <a href="mailto:jstrachan@apache.org">James Strachan</a>
23 * @version $Revision: 155420 $
24 */
25 public class MissingAttributeException extends JellyTagException {
26
27 private String missingAttribute;
28
29
30
31 public MissingAttributeException(String missingAttribute) {
32 super( "You must define an attribute called '" + missingAttribute + "' for this tag." );
33 this.missingAttribute = missingAttribute;
34 }
35
36 public String getMissingAttribute() {
37 return missingAttribute;
38 }
39 }