001/* 002 * (C) Copyright 2014 Nuxeo SA (http://nuxeo.com/) and others. 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 * 016 * Contributors: 017 * vpasquier <vpasquier@nuxeo.com> 018 */ 019package org.nuxeo.ecm.automation.server.jaxrs; 020 021import org.nuxeo.ecm.automation.OperationException; 022 023import javax.servlet.http.HttpServletResponse; 024 025/** 026 * Automation exception to extend to be thrown during REST calls on 027 * Automation operations. 028 * 029 * @since 7.1 030 */ 031public class RestOperationException extends OperationException { 032 033 private static final long serialVersionUID = 1L; 034 035 protected int status = HttpServletResponse.SC_INTERNAL_SERVER_ERROR; 036 037 public RestOperationException(String message) { 038 super(message); 039 } 040 041 public RestOperationException(Throwable cause) { 042 super(cause); 043 } 044 045 public RestOperationException(String message, Throwable cause) { 046 super(message, cause); 047 } 048 049 public RestOperationException(String message, int status) { 050 super(message); 051 this.status = status; 052 } 053 054 public RestOperationException(Throwable cause, int status) { 055 super(cause); 056 this.status = status; 057 } 058 059 public RestOperationException(String message, Throwable cause, int status) { 060 super(message, cause); 061 this.status = status; 062 } 063 064 public int getStatus() { 065 return status; 066 } 067 068 public void setStatus(int status) { 069 this.status = status; 070 } 071}