1 /*$Id: InaccessibleExternalValueException.java,v 1.1 2004/07/26 12:07:38 nw Exp $
2 * Created on 16-Jun-2004
3 *
4 * Copyright (C) AstroGrid. All rights reserved.
5 *
6 * This software is published under the terms of the AstroGrid
7 * Software License version 1.2, a copy of which has been included
8 * with this distribution in the LICENSE.txt file.
9 *
10 **/
11 package org.astrogrid.applications.parameter.protocol;
12
13 import org.astrogrid.applications.parameter.ParameterAdapterException;
14
15 /*** thrown when the value of an indirect parameter cannot be accessed - e.g. because the resource cannot be accessed.
16 * @author Noel Winstanley nw@jb.man.ac.uk 16-Jun-2004
17 *
18 */
19 public class InaccessibleExternalValueException extends ParameterAdapterException {
20 /*** Construct a new InaccessibleIndirectParameterException
21 * @param message
22 */
23 public InaccessibleExternalValueException(String message) {
24 super(message);
25 }
26 /*** Construct a new InaccessibleIndirectParameterException
27 * @param message
28 * @param cause
29 */
30 public InaccessibleExternalValueException(String message, Throwable cause) {
31 super(message, cause);
32 }
33 }
34
35
36 /*
37 $Log: InaccessibleExternalValueException.java,v $
38 Revision 1.1 2004/07/26 12:07:38 nw
39 renamed indirect package to protocol,
40 renamed classes and methods within protocol package
41 javadocs
42
43 Revision 1.2 2004/07/01 11:16:22 nw
44 merged in branch
45 nww-itn06-componentization
46
47 Revision 1.1.2.2 2004/07/01 01:42:46 nw
48 final version, before merge
49
50 Revision 1.1.2.1 2004/06/17 09:21:23 nw
51 finished all major functionality additions to core
52
53 */