01: // Copyright (C) 1998-2001 by Jason Hunter <jhunter_AT_acm_DOT_org>.
02: // All rights reserved. Use of this class is limited.
03: // Please see the LICENSE for more information.
04:
05: package com.oreilly.servlet;
06:
07: /**
08: * Thrown to indicate a parameter does not exist.
09: *
10: * @see com.oreilly.servlet.ParameterParser
11: *
12: * @author <b>Jason Hunter</b>, Copyright © 1998
13: * @version 1.0, 98/09/18
14: */
15: public class ParameterNotFoundException extends Exception {
16:
17: /**
18: * Constructs a new ParameterNotFoundException with no detail message.
19: */
20: public ParameterNotFoundException() {
21: super ();
22: }
23:
24: /**
25: * Constructs a new ParameterNotFoundException with the specified
26: * detail message.
27: *
28: * @param s the detail message
29: */
30: public ParameterNotFoundException(String s) {
31: super(s);
32: }
33: }
|