Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9F2B6200B65 for ; Wed, 17 Aug 2016 23:17:24 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 9DF11160A8C; Wed, 17 Aug 2016 21:17:24 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 7375A160AD4 for ; Wed, 17 Aug 2016 23:17:22 +0200 (CEST) Received: (qmail 32841 invoked by uid 500); 17 Aug 2016 21:17:21 -0000 Mailing-List: contact commits-help@usergrid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@usergrid.apache.org Delivered-To: mailing list commits@usergrid.apache.org Received: (qmail 32560 invoked by uid 99); 17 Aug 2016 21:17:21 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 17 Aug 2016 21:17:21 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 16A05EF796; Wed, 17 Aug 2016 21:17:21 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mrusso@apache.org To: commits@usergrid.apache.org Date: Wed, 17 Aug 2016 21:17:55 -0000 Message-Id: In-Reply-To: <8091e2d56c024a399ee53e59e4627273@git.apache.org> References: <8091e2d56c024a399ee53e59e4627273@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [36/50] [abbrv] usergrid git commit: Add runtime exception mapper to 500 status code. archived-at: Wed, 17 Aug 2016 21:17:24 -0000 Add runtime exception mapper to 500 status code. Project: http://git-wip-us.apache.org/repos/asf/usergrid/repo Commit: http://git-wip-us.apache.org/repos/asf/usergrid/commit/8d4e5971 Tree: http://git-wip-us.apache.org/repos/asf/usergrid/tree/8d4e5971 Diff: http://git-wip-us.apache.org/repos/asf/usergrid/diff/8d4e5971 Branch: refs/heads/datastax-cass-driver Commit: 8d4e59714d84f5c6e7f3d26819dbf7074ea0baee Parents: 81de964 Author: Michael Russo Authored: Tue Aug 2 15:04:13 2016 -0700 Committer: Michael Russo Committed: Tue Aug 2 15:04:13 2016 -0700 ---------------------------------------------------------------------- .../rest/exceptions/RuntimeExceptionMapper.java | 43 ++++++++++++++++++++ 1 file changed, 43 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/usergrid/blob/8d4e5971/stack/rest/src/main/java/org/apache/usergrid/rest/exceptions/RuntimeExceptionMapper.java ---------------------------------------------------------------------- diff --git a/stack/rest/src/main/java/org/apache/usergrid/rest/exceptions/RuntimeExceptionMapper.java b/stack/rest/src/main/java/org/apache/usergrid/rest/exceptions/RuntimeExceptionMapper.java new file mode 100644 index 0000000..0e9b759 --- /dev/null +++ b/stack/rest/src/main/java/org/apache/usergrid/rest/exceptions/RuntimeExceptionMapper.java @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.apache.usergrid.rest.exceptions; + + +import javax.ws.rs.core.Response; +import javax.ws.rs.ext.Provider; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import static javax.ws.rs.core.Response.Status.INTERNAL_SERVER_ERROR; + + +@Provider +public class RuntimeExceptionMapper extends AbstractExceptionMapper { + + private static final Logger logger = LoggerFactory.getLogger(RuntimeExceptionMapper.class); + + @Override + public Response toResponse( RuntimeException e ) { + + if(logger.isTraceEnabled()) { + logger.trace("Error during runtime processing", e.getMessage()); + } + + return toResponse( INTERNAL_SERVER_ERROR, e ); + } +}