package ca.uhn.fhir.rest.server.exceptions; import org.hl7.fhir.instance.model.api.IBaseOperationOutcome; import ca.uhn.fhir.util.CoverageIgnore; /* * #%L * HAPI FHIR - Core Library * %% * Copyright (C) 2014 - 2017 University Health Network * %% * 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. * #L% */ /** * Exception for use when a response is received or being sent that does not correspond to any other exception type. An HTTP status code must be provided, and will be provided to the caller in the * case of a server implementation. */ @CoverageIgnore public class UnclassifiedServerFailureException extends BaseServerResponseException { /** * Constructor * * @param theStatusCode * The HTTP status code to return (e.g. 404 if you wish to return an HTTP 404 status) * @param theMessage * The message to add to the status line */ public UnclassifiedServerFailureException(int theStatusCode, String theMessage) { super(theStatusCode, theMessage); } /** * Constructor * * @param theStatusCode * The HTTP status code to return (e.g. 404 if you wish to return an HTTP 404 status) * @param theMessage * The message to add to the status line * @param theOperationOutcome The OperationOutcome resource to return to the client */ public UnclassifiedServerFailureException(int theStatusCode, String theMessage, IBaseOperationOutcome theOperationOutcome) { super(theStatusCode, theMessage, theOperationOutcome); } private static final long serialVersionUID = 1L; }