You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2018/01/22 20:43:42 UTC

[isis] branch ISIS-1846_internal_utils updated: ISIS-1827 reflect applib changes in ExceptionRecognizerDocDefault

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch ISIS-1846_internal_utils
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/ISIS-1846_internal_utils by this push:
     new 6631872  ISIS-1827 reflect applib changes in ExceptionRecognizerDocDefault
6631872 is described below

commit 66318728bb8627fdd1a630d9c9db007ee82cf7ce
Author: Andi Huber <ah...@apache.org>
AuthorDate: Mon Jan 22 21:43:41 2018 +0100

    ISIS-1827 reflect applib changes in ExceptionRecognizerDocDefault
---
 .../services/exceprecog/ExceptionRecognizerDocDefault.java         | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/exceprecog/ExceptionRecognizerDocDefault.java b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/exceprecog/ExceptionRecognizerDocDefault.java
index 228c079..68e776a 100644
--- a/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/exceprecog/ExceptionRecognizerDocDefault.java
+++ b/core/metamodel/src/main/java/org/apache/isis/core/metamodel/services/exceprecog/ExceptionRecognizerDocDefault.java
@@ -30,7 +30,7 @@ import org.apache.isis.applib.annotation.NatureOfService;
 import org.apache.isis.applib.annotation.Programmatic;
 import org.apache.isis.applib.services.exceprecog.ExceptionRecognizer;
 import org.apache.isis.applib.services.exceprecog.ExceptionRecognizerComposite;
-import org.apache.isis.applib.services.exceprecog.ExceptionRecognizerForType;
+import org.apache.isis.applib.services.exceprecog.ExceptionRecognizerForType2;
 import org.apache.isis.applib.services.registry.ServiceRegistry;
 import org.apache.isis.core.metamodel.adapter.version.ConcurrencyException;
 
@@ -62,12 +62,13 @@ public class ExceptionRecognizerDocDefault
     //endregion
 
     static class ExceptionRecognizerForConcurrencyException
-            extends ExceptionRecognizerForType {
+            extends ExceptionRecognizerForType2 {
         public ExceptionRecognizerForConcurrencyException() {
             super(Category.CONCURRENCY, ConcurrencyException.class, prefix("Another user has just changed this data"));
         }
     }
-    static class ExceptionRecognizerForRecoverableException extends ExceptionRecognizerForType {
+    static class ExceptionRecognizerForRecoverableException 
+    	extends ExceptionRecognizerForType2 {
         public ExceptionRecognizerForRecoverableException() {
             super(Category.CLIENT_ERROR, RecoverableException.class);
         }

-- 
To stop receiving notification emails like this one, please contact
ahuber@apache.org.