Coverage for src/ezcompiler/shared/exceptions/utils/_base.py: 100.00%
2 statements
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-04 11:22 +0000
« prev ^ index » next coverage.py v7.14.3, created at 2026-07-04 11:22 +0000
1# ///////////////////////////////////////////////////////////////
2# BASE - Base exception for EzCompiler
3# Project: ezcompiler
4# ///////////////////////////////////////////////////////////////
6"""
7Base exception - Core exception class for all EzCompiler errors.
9This module defines the base exception class that all other exceptions inherit from.
10"""
12from __future__ import annotations
15class EzCompilerError(Exception):
16 """Base exception for all EzCompiler utils errors."""