Good morning,
Please how I want to capture Access Denied error , but it is not working.
How can I handle this exception AccessDenied
Thank you.
try:
            if req.session.model('res.users').change_password(
                old_password, new_password):
                return {'new_password':new_password}
        except PassError as e:
            return {'error': (e.message), 'title': ('Change Password')}
        except AccessDenied, e:
            return {'error': (e.message), 'title': ('Access Denied')}
