blob: ce7e23b98a10f500f58062f5af29d213dc97d476 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
// Copyright (C) 2001-2003 Jon A. Maxwell (JAM)
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
package net.sourceforge.jnlp;
import java.io.*;
/**
* Thrown to indicate that an error has occurred while parsing a
* JNLP file.
*
* @author <a href="mailto:jmaxwell@users.sourceforge.net">Jon A. Maxwell (JAM)</a> - initial author
* @version $Revision: 1.7 $
*/
public class ParseException extends Exception {
// todo: add meaningful information, such as the invalid
// element, parse position, etc.
/** the original exception */
private Throwable cause = null;
/**
* Create a parse exception with the specified message.
*/
public ParseException(String message) {
super(message);
}
/**
* Create a parse exception with the specified message and
* cause.
*/
public ParseException(String message, Throwable cause) {
super(message);
// replace with setCause when no longer 1.3 compatible
this.cause = cause;
}
/**
* Return the cause of the launch exception or null if there
* is no cause exception.
*/
public Throwable getCause() {
return cause;
}
/**
* Print the stack trace and the cause exception (1.3
* compatible)
*/
public void printStackTrace(PrintStream stream) {
super.printStackTrace(stream);
if (cause != null) {
stream.println("Caused by: ");
cause.printStackTrace(stream);
}
}
/**
* Print the stack trace and the cause exception (1.3
* compatible)
*/
public void printStackTrace(PrintWriter stream) {
super.printStackTrace(stream);
if (cause != null) {
stream.println("Caused by: ");
cause.printStackTrace(stream);
}
}
}
|