Repository: shiro Updated Branches: refs/heads/master e3516697b -> e8ba5cbef
Adding back in removed UnailableSecurityManagerException constructor Moving master back to 1.4, per semver, we need to add this constructor back in Project: http://git-wip-us.apache.org/repos/asf/shiro/repo Commit: http://git-wip-us.apache.org/repos/asf/shiro/commit/6eb070f4 Tree: http://git-wip-us.apache.org/repos/asf/shiro/tree/6eb070f4 Diff: http://git-wip-us.apache.org/repos/asf/shiro/diff/6eb070f4 Branch: refs/heads/master Commit: 6eb070f4ac6a882eb01ce188701b40d0017ae2d0 Parents: e351669 Author: Brian Demers <[email protected]> Authored: Mon Nov 7 12:20:57 2016 -0500 Committer: Brian Demers <[email protected]> Committed: Mon Nov 7 15:06:23 2016 -0500 ---------------------------------------------------------------------- .../apache/shiro/UnavailableSecurityManagerException.java | 8 ++++++++ 1 file changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/shiro/blob/6eb070f4/core/src/main/java/org/apache/shiro/UnavailableSecurityManagerException.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/shiro/UnavailableSecurityManagerException.java b/core/src/main/java/org/apache/shiro/UnavailableSecurityManagerException.java index af1b021..9f07670 100644 --- a/core/src/main/java/org/apache/shiro/UnavailableSecurityManagerException.java +++ b/core/src/main/java/org/apache/shiro/UnavailableSecurityManagerException.java @@ -29,4 +29,12 @@ public class UnavailableSecurityManagerException extends ShiroException { public UnavailableSecurityManagerException(String message) { super(message); } + + /** + * @deprecated This constructor is NOT used by Shiro directly, and will be removed in the future. + */ + @Deprecated + public UnavailableSecurityManagerException(String message, Throwable cause) { + super(message, cause); + } }
