1
2
3
4
5
6
7
8
9
10
11 package org.astrogrid.portal.workflow.intf;
12
13 /*** Thrown when a tool instance does not match the definition given in an application description.
14 * @see ApplicationDescription#validate
15 * @author Noel Winstanley nw@jb.man.ac.uk 11-Mar-2004
16 *
17 */
18 public class ToolValidationException extends Exception {
19
20 /*** Construct a new InvalidToolException
21 * @param message
22 */
23 public ToolValidationException(String message) {
24 super(message);
25 }
26 /*** Construct a new InvalidToolException
27 * @param cause
28 */
29 public ToolValidationException(Throwable cause) {
30 super(cause);
31 }
32 /*** Construct a new InvalidToolException
33 * @param message
34 * @param cause
35 */
36 public ToolValidationException(String message, Throwable cause) {
37 super(message, cause);
38 }
39 }
40
41
42
43
44
45
46
47
48
49
50