You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by co...@apache.org on 2017/07/26 14:00:31 UTC

syncope git commit: SYNCOPE-1172 - Error message of "Malformed Path" could be made a little clearer

Repository: syncope
Updated Branches:
  refs/heads/master d47faaff4 -> b436c7a7d


SYNCOPE-1172 - Error message of "Malformed Path" could be made a little clearer


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/b436c7a7
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/b436c7a7
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/b436c7a7

Branch: refs/heads/master
Commit: b436c7a7d7bba80ce3f085e9c9bca7c83e961b57
Parents: d47faaf
Author: Colm O hEigeartaigh <co...@apache.org>
Authored: Wed Jul 26 15:00:07 2017 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
Committed: Wed Jul 26 15:00:07 2017 +0100

----------------------------------------------------------------------
 .../syncope/core/persistence/api/dao/MalformedPathException.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/b436c7a7/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/MalformedPathException.java
----------------------------------------------------------------------
diff --git a/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/MalformedPathException.java b/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/MalformedPathException.java
index ec29738..c47156b 100644
--- a/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/MalformedPathException.java
+++ b/core/persistence-api/src/main/java/org/apache/syncope/core/persistence/api/dao/MalformedPathException.java
@@ -26,6 +26,6 @@ public class MalformedPathException extends RuntimeException {
     private static final long serialVersionUID = -164735562182120006L;
 
     public MalformedPathException(final String path) {
-        super("Malformed path: " + path);
+        super("The provided realm path is malformed: " + path);
     }
 }