Roles类的小修改

Roles类中有一个GetRole(Guid roleID, bool cacheable)方法,此处在找不到角色的时候抛出了一个异常
throw new CSException(CSExceptionType.ResourceNotFound, "Role not found: " + roleID.ToString());
此处异常类型为ResourceNotFound,应该改成RoleNotFound类型才对。

throw new CSException(CSExceptionType.RoleNotFound, "Role not found: " + roleID.ToString());

另外一个同样需要修改的方法还有 GetRole(string roleName, bool cacheable)
posted on 2006-04-11 11:16  Na57  阅读(396)  评论(0编辑  收藏  举报