# 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