01: /* Copyright 2002-2005 Elliotte Rusty Harold
02:
03: This library is free software; you can redistribute it and/or modify
04: it under the terms of version 2.1 of the GNU Lesser General Public
05: License as published by the Free Software Foundation.
06:
07: This library is distributed in the hope that it will be useful,
08: but WITHOUT ANY WARRANTY; without even the implied warranty of
09: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10: GNU Lesser General Public License for more details.
11:
12: You should have received a copy of the GNU Lesser General Public
13: License along with this library; if not, write to the
14: Free Software Foundation, Inc., 59 Temple Place, Suite 330,
15: Boston, MA 02111-1307 USA
16:
17: You can contact Elliotte Rusty Harold by sending e-mail to
18: elharo@metalab.unc.edu. Please include the word "XOM" in the
19: subject line. The XOM home page is located at http://www.xom.nu/
20: */
21:
22: package nu.xom;
23:
24: /**
25: * <p>
26: * Indicates an attempt to
27: * set some value to malformed content; for instance
28: * by adding a string containing a null or a vertical tab
29: * to a text node, or using white space in an element name.
30: * </p>
31:
32: * @author Elliotte Rusty Harold
33: * @version 1.1b3
34: *
35: */
36: public class IllegalDataException extends WellformednessException {
37:
38: /**
39: *
40: */
41: private static final long serialVersionUID = 5116683358318890040L;
42: private String data;
43:
44: /**
45: * <p>
46: * Creates a new <code>IllegalDataException</code>
47: * with a detail message.
48: * </p>
49: *
50: * @param message a string indicating the specific problem
51: */
52: public IllegalDataException(String message) {
53: super (message);
54: }
55:
56: /**
57: * <p>
58: * Creates a new <code>IllegalDataException</code>
59: * with a detail message and an underlying root cause.
60: * </p>
61: *
62: * @param message a string indicating the specific problem
63: * @param cause the original cause of this exception
64: */
65: public IllegalDataException(String message, Throwable cause) {
66: super (message, cause);
67: }
68:
69: /**
70: * <p>
71: * Stores the illegal text that caused this exception.
72: * </p>
73: *
74: * @param data the illegal data that caused this exception
75: */
76: public void setData(String data) {
77: this .data = data;
78: }
79:
80: /**
81: * <p>
82: * Returns a string containing the actual illegal text that
83: * caused this exception.
84: * </p>
85: *
86: * @return the syntactically incorrect data that caused
87: * this exception
88: */
89: public String getData() {
90: return data;
91: }
92:
93: }
|