All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.n52.shetland.ogc.ows.exception.MissingParameterValueException Maven / Gradle / Ivy

/*
 * Copyright (C) 2015-2022 52°North Spatial Information Research GmbH
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *    http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.n52.shetland.ogc.ows.exception;

import org.n52.janmayen.http.HTTPStatus;

/**
 * Implementation of {@link CodedOwsException} to be used if
 * 

* Operation request does not include a parameter value, and this server did not declare a default value * for that parameter. * * @see OGC Web Service Common * Specification 1.1.0, Table 25 — Standard exception codes and meanings * @author Christian Autermann * * @since 1.0.0 */ public class MissingParameterValueException extends CodedOwsException { private static final long serialVersionUID = 236478803986562631L; public MissingParameterValueException(final String parameter) { super(OwsExceptionCode.MissingParameterValue); at(parameter).withMessage("The value for the parameter '%s' is missing in the request!", parameter); setStatus(HTTPStatus.BAD_REQUEST); } public MissingParameterValueException(final Enum parameter) { this(parameter.name()); } public MissingParameterValueException() { super(OwsExceptionCode.MissingParameterValue); setStatus(HTTPStatus.BAD_REQUEST); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy