1
2
3
4
5
6
7
8
9 package bexee.model;
10
11 /***
12 * This exception class is used to signalize that a BPEL document is not valid.
13 *
14 * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:10 $
15 * @author Patric Fornasier
16 * @author Pawel Kowalski
17 */
18 public class BPELDocumentException extends Exception {
19
20 /***
21 * Construct a <code>BPELDocumentException</code> with a message and the
22 * cause specified.
23 *
24 * @param String
25 * message
26 * @param Throwable
27 * cause
28 */
29 public BPELDocumentException(String message, Throwable cause) {
30 super(message, cause);
31 }
32
33 /***
34 * Construct a <code>BPELDocumentException</code> with a cause specified.
35 *
36 * @param Throwable
37 * cause
38 */
39 public BPELDocumentException(Throwable cause) {
40 super(cause);
41 }
42
43 }