1
|
|
/* Generated by AspectJ version 1.0.5 */
|
2
|
|
package org.apache.cactus.client;
|
3
|
|
import org.apache.cactus.util.ChainedException;
|
4
|
|
|
5
|
|
/**
|
6
|
|
* Thrown when parsing the Web Test result (XML) and trying to build a
|
7
|
|
* <code>WebTestResult</code> object.
|
8
|
|
*
|
9
|
|
* @see WebTestResultParser
|
10
|
|
*
|
11
|
|
* @author <a href="mailto:vmassol@apache.org">Vincent Massol</a>
|
12
|
|
*
|
13
|
|
* @version $Id: ParsingException.html,v 1.1 2003/04/14 12:27:31 sinisa Exp $
|
14
|
|
*/
|
15
|
|
public class ParsingException extends ChainedException {
|
16
|
|
/**
|
17
|
|
* @see ChainedException#ChainedException(String)
|
18
|
|
*/
|
19
|
0
|
public ParsingException(String theMessage) {
|
20
|
0
|
super(theMessage);
|
21
|
|
;
|
22
|
|
}
|
23
|
|
/**
|
24
|
|
* @see ChainedException#ChainedException(Throwable)
|
25
|
|
*/
|
26
|
0
|
public ParsingException(Throwable theException) {
|
27
|
0
|
super(theException);
|
28
|
|
;
|
29
|
|
}
|
30
|
|
/**
|
31
|
|
* @see ChainedException#ChainedException(String, Throwable)
|
32
|
|
*/
|
33
|
0
|
public ParsingException(String theMessage, Throwable theException) {
|
34
|
0
|
super(theMessage, theException);
|
35
|
|
;
|
36
|
|
}
|
37
|
|
}
|