blob: 2af4eec32588521c02a51d7ffb084affd4db181d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Raymond Augé and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Raymond Augé <raymond.auge@liferay.com> - Bug 436698
******************************************************************************/
package org.eclipse.equinox.http.servlet.internal.error;
import javax.servlet.Servlet;
import javax.servlet.ServletException;
/**
* @author Raymond Augé
*/
public class ServletAlreadyRegisteredException extends ServletException {
private static final long serialVersionUID = 8838939310124336724L;
public ServletAlreadyRegisteredException(Servlet servlet) {
super("Servlet has already been registered: " + servlet);
}
}