Line data Source code
1 : // Copyright (C) 2012 The Android Open Source Project 2 : // 3 : // Licensed under the Apache License, Version 2.0 (the "License"); 4 : // you may not use this file except in compliance with the License. 5 : // You may obtain a copy of the License at 6 : // 7 : // http://www.apache.org/licenses/LICENSE-2.0 8 : // 9 : // Unless required by applicable law or agreed to in writing, software 10 : // distributed under the License is distributed on an "AS IS" BASIS, 11 : // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 : // See the License for the specific language governing permissions and 13 : // limitations under the License. 14 : 15 : package com.google.gerrit.extensions.restapi; 16 : 17 : /** 18 : * Resource state does not permit requested operation (HTTP 409 Conflict). 19 : * 20 : * <p>{@link RestModifyView} implementations may fail with this exception when the named resource 21 : * does not permit the modification to take place at this time. An example use is trying to abandon 22 : * a change that is already merged. The change cannot be abandoned once merged so an operation would 23 : * throw. 24 : */ 25 : public class ResourceConflictException extends RestApiException { 26 : private static final long serialVersionUID = 1L; 27 : 28 : /** @param msg message to return to the client describing the error. */ 29 : public ResourceConflictException(String msg) { 30 74 : super(msg); 31 74 : } 32 : 33 : /** @param msg message to return to the client describing the error. */ 34 : public ResourceConflictException(String msg, Throwable cause) { 35 20 : super(msg, cause); 36 20 : } 37 : }