18 lines
392 B
Python
18 lines
392 B
Python
"""
|
|
This file has custom exceptions for ccx
|
|
"""
|
|
|
|
|
|
class CCXUserValidationException(Exception):
|
|
"""
|
|
Custom Exception for validation of users in CCX
|
|
"""
|
|
pass # lint-amnesty, pylint: disable=unnecessary-pass
|
|
|
|
|
|
class CCXLocatorValidationException(Exception):
|
|
"""
|
|
Custom Exception to validate CCX locator
|
|
"""
|
|
pass # lint-amnesty, pylint: disable=unnecessary-pass
|