"""Exceptions for the embargo app."""classInvalidAccessPoint(Exception):"""The requested access point is not supported. """def__init__(self,access_point,*args,**kwargs):msg=(u"Access point '{access_point}' should be either 'enrollment' or 'courseware'").format(access_point=access_point)super(InvalidAccessPoint,self).__init__(msg,*args,**kwargs)