docker.images/ansible.awx/awx-17.1.0/awx/main/tests/factories/exc.py

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)