1
2
3
4
5
6
7
8
9
10
11 package org.astrogrid.applications.parameter.protocol;
12
13 import org.astrogrid.applications.parameter.ParameterAdapterException;
14
15 /*** Exception thrown when an indirect parameter is encountered whose resource is not a known protocol.
16 * @author Noel Winstanley nw@jb.man.ac.uk 16-Jun-2004
17 *
18 */
19 public class UnrecognizedProtocolException extends ParameterAdapterException {
20 /*** Construct a new UnrecognizedIndirectParameterProtocolException
21 * @param message
22 */
23 public UnrecognizedProtocolException(String message) {
24 super(message);
25 }
26 /*** Construct a new UnrecognizedIndirectParameterProtocolException
27 * @param message
28 * @param cause
29 */
30 public UnrecognizedProtocolException(String message, Throwable cause) {
31 super(message, cause);
32 }
33 }
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50