deb-python-requests-kerberos/requests_kerberos/exceptions.py
nitzmahone 47b178c184 working fix for mutual auth from winrm
fixes #65, fixes #68 - adds preemptive auth
updated tests for changed args and added tests for preemptive/not
updated readme for new arg
2016-04-19 12:36:14 -07:00

16 lines
332 B
Python

"""
requests_kerberos.exceptions
~~~~~~~~~~~~~~~~~~~
This module contains the set of exceptions.
"""
from requests.exceptions import RequestException
class MutualAuthenticationError(RequestException):
"""Mutual Authentication Error"""
class KerberosExchangeError(RequestException):
"""Kerberos Exchange Failed Error"""