x86_64-centos-awx/awx/main/tests/factories/exc.py
2021-03-02 20:53:43 +08:00

6 lines
199 B
Python

class NotUnique(Exception):
def __init__(self, name, objects):
msg = '{} is not a unique key, found {}={}'.format(name, name, objects[name])
super(Exception, self).__init__(msg)