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 : import static java.util.Objects.requireNonNull; 18 : 19 : /** Root exception type for REST API failures. */ 20 : public class RestApiException extends Exception { 21 : private static final long serialVersionUID = 1L; 22 153 : private CacheControl caching = CacheControl.NONE; 23 : 24 : public static RestApiException wrap(String msg, Exception e) { 25 5 : return new RestApiException(msg, e); 26 : } 27 : 28 7 : protected RestApiException() {} 29 : 30 : protected RestApiException(String msg) { 31 152 : super(msg); 32 152 : } 33 : 34 : protected RestApiException(String msg, Throwable cause) { 35 51 : super(msg, cause); 36 51 : } 37 : 38 : public CacheControl caching() { 39 19 : return caching; 40 : } 41 : 42 : protected void setCaching(CacheControl caching) { 43 0 : this.caching = requireNonNull(caching); 44 0 : } 45 : }