File size: 250 Bytes
43cd37c
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# errors.py
# Description: Custom Exceptions for Personas
#
# Imports
from typing import Any, Dict, List, Optional, Union
#
# Custom Exceptions

class CCv3ParserError(Exception):
    """Custom exception for CCv3 Parser errors."""
    pass