com.oreilly.servlet.ParameterNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos Show documentation
Show all versions of cos Show documentation
Cos.
The version 2024.5.0.0 is for Servlet 5.0.0.
// Copyright (C) 1998-2001 by Jason Hunter .
// All rights reserved. Use of this class is limited.
// Please see the LICENSE for more information.
package com.oreilly.servlet;
/**
* Thrown to indicate a parameter does not exist.
*
* @see com.oreilly.servlet.ParameterParser
*
* @author Jason Hunter, Copyright © 1998
* @version 1.0, 98/09/18
*/
public class ParameterNotFoundException extends Exception {
/**
* Constructs a new ParameterNotFoundException with no detail message.
*/
public ParameterNotFoundException() {
super();
}
/**
* Constructs a new ParameterNotFoundException with the specified
* detail message.
*
* @param s the detail message
*/
public ParameterNotFoundException(String s) {
super(s);
}
}