xref: /OpenGrok/opengrok-web/src/main/java/org/opengrok/web/util/NoPathParameterException.java (revision 5d9f3aa0ca3da3a714233f987fa732f62c0965f6)
1754a7a39SVladimir Kotal /*
2754a7a39SVladimir Kotal  * CDDL HEADER START
3754a7a39SVladimir Kotal  *
4754a7a39SVladimir Kotal  * The contents of this file are subject to the terms of the
5754a7a39SVladimir Kotal  * Common Development and Distribution License (the "License").
6754a7a39SVladimir Kotal  * You may not use this file except in compliance with the License.
7754a7a39SVladimir Kotal  *
8754a7a39SVladimir Kotal  * See LICENSE.txt included in this distribution for the specific
9754a7a39SVladimir Kotal  * language governing permissions and limitations under the License.
10754a7a39SVladimir Kotal  *
11754a7a39SVladimir Kotal  * When distributing Covered Code, include this CDDL HEADER in each
12754a7a39SVladimir Kotal  * file and include the License file at LICENSE.txt.
13754a7a39SVladimir Kotal  * If applicable, add the following below this CDDL HEADER, with the
14754a7a39SVladimir Kotal  * fields enclosed by brackets "[]" replaced with your own identifying
15754a7a39SVladimir Kotal  * information: Portions Copyright [yyyy] [name of copyright owner]
16754a7a39SVladimir Kotal  *
17754a7a39SVladimir Kotal  * CDDL HEADER END
18754a7a39SVladimir Kotal  */
19754a7a39SVladimir Kotal 
20754a7a39SVladimir Kotal /*
21*5d9f3aa0SAdam Hornáček  * Copyright (c) 2020, Oracle and/or its affiliates. All rights reserved.
223c7c9b2aSChris Fraire  * Portions Copyright (c) 2020, Chris Fraire <cfraire@me.com>.
23754a7a39SVladimir Kotal  */
24754a7a39SVladimir Kotal package org.opengrok.web.util;
25754a7a39SVladimir Kotal 
26754a7a39SVladimir Kotal public class NoPathParameterException extends Exception {
27754a7a39SVladimir Kotal     private static final long serialVersionUID = 1L;
28754a7a39SVladimir Kotal 
NoPathParameterException(String message)29754a7a39SVladimir Kotal     public NoPathParameterException(String message) {
30754a7a39SVladimir Kotal         super(message);
31754a7a39SVladimir Kotal     }
32754a7a39SVladimir Kotal }
33