You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@tomee.apache.org by bu...@apache.org on 2013/01/03 14:23:09 UTC

svn commit: r844757 - in /websites/staging/openejb/trunk: cgi-bin/ content/ content/examples-trunk/rest-applicationcomposer/src/main/java/org/superbiz/composed/rest/IllegalArgumentExceptionMapper.java

Author: buildbot
Date: Thu Jan  3 13:23:09 2013
New Revision: 844757

Log:
Staging update by buildbot for openejb

Modified:
    websites/staging/openejb/trunk/cgi-bin/   (props changed)
    websites/staging/openejb/trunk/content/   (props changed)
    websites/staging/openejb/trunk/content/examples-trunk/rest-applicationcomposer/src/main/java/org/superbiz/composed/rest/IllegalArgumentExceptionMapper.java

Propchange: websites/staging/openejb/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Jan  3 13:23:09 2013
@@ -1 +1 @@
-1428276
+1428331

Propchange: websites/staging/openejb/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Thu Jan  3 13:23:09 2013
@@ -1 +1 @@
-1428276
+1428331

Modified: websites/staging/openejb/trunk/content/examples-trunk/rest-applicationcomposer/src/main/java/org/superbiz/composed/rest/IllegalArgumentExceptionMapper.java
==============================================================================
--- websites/staging/openejb/trunk/content/examples-trunk/rest-applicationcomposer/src/main/java/org/superbiz/composed/rest/IllegalArgumentExceptionMapper.java (original)
+++ websites/staging/openejb/trunk/content/examples-trunk/rest-applicationcomposer/src/main/java/org/superbiz/composed/rest/IllegalArgumentExceptionMapper.java Thu Jan  3 13:23:09 2013
@@ -21,9 +21,9 @@ import javax.ws.rs.ext.ExceptionMapper;
 import javax.ws.rs.ext.Provider;
 
 @Provider
-public class IllegalArgumentExceptionMapper implements ExceptionMapper<IllegalArgumentException> {
+public class IllegalArgumentExceptionMapper implements ExceptionMapper<java.lang.IllegalArgumentException> {
     @Override
-    public Response toResponse(final IllegalArgumentException throwable) {
+    public Response toResponse(final java.lang.IllegalArgumentException throwable) {
         return Response.ok(throwable.getMessage()).build();
     }
 }