Coverage for src / ezcompiler / shared / exceptions / utils / base.py: 100.00%
2 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-27 06:49 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-03-27 06:49 +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."""