You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@usergrid.apache.org by sn...@apache.org on 2016/08/22 15:00:23 UTC

[19/50] usergrid git commit: Add runtime exception mapper to 500 status code.

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/asf-site
Commit: 8d4e59714d84f5c6e7f3d26819dbf7074ea0baee
Parents: 81de964
Author: Michael Russo <mr...@apigee.com>
Authored: Tue Aug 2 15:04:13 2016 -0700
Committer: Michael Russo <mr...@apigee.com>
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<RuntimeException> {
+
+    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 );
+    }
+}