Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Won't Fix
-
1.0.0-RC39
-
None
Description
Currently fortress manager interface methods throw checked exceptions:
public User addUser(User user)
throws SecurityException;
While this is an acceptable practice it is worth considering changing securityexception to be an unchecked exception. The advantage is (arguably) a simplified interaction pattern with the client.