"src/python/git@git.aps.anl.gov:hammonds/dm-docs.git" did not exist on "3b7e049709bc678e6375bf3478e93fa9f2726bd2"
Forked from
DM / dm-docs
261 commits behind, 442 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
authenticationError.py 475 B
#!/usr/bin/env python
#
# Authentication error class.
#
#######################################################################
from dm.common.constants import dmStatus
from dm.common.exceptions.dmException import DmException
#######################################################################
class AuthenticationError(DmException):
def __init__ (self, error='', **kwargs):
DmException.__init__(self, error, dmStatus.DM_AUTHENTICATION_ERROR, **kwargs)