custom_exception.py 292 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
"""
This file has custom exceptions for ccx
"""


class CCXUserValidationException(Exception):
    """
    Custom Exception for validation of users in CCX
    """
    pass


class CCXLocatorValidationException(Exception):
    """
    Custom Exception to validate CCX locator
    """
    pass