6 lines
126 B
Python
6 lines
126 B
Python
|
class KwargConflict(Exception):
|
||
|
"""
|
||
|
Raised when the keyword arguments passed to a function conflict.
|
||
|
"""
|
||
|
pass
|