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