01: /*
02: * $Id: BPELDocumentException.java,v 1.4 2004/12/08 12:14:35 kowap Exp $
03: *
04: * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
05: * Berne University of Applied Sciences
06: * School of Engineering and Information Technology
07: * All rights reserved.
08: */
09: 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.4 $, $Date: 2004/12/08 12:14:35 $
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: }
|