public void setRoleDescription( ITenant tenant, String roleName, String description ) throws NotFoundException,
UncategorizedUserRoleDaoException {
IPentahoRole role = getRole( tenant, roleName );
if ( role == null ) {
throw new NotFoundException( roleName );
}
role.setDescription( description );
}