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

1# /////////////////////////////////////////////////////////////// 

2# BASE - Base exception for EzCompiler 

3# Project: ezcompiler 

4# /////////////////////////////////////////////////////////////// 

5 

6""" 

7Base exception - Core exception class for all EzCompiler errors. 

8 

9This module defines the base exception class that all other exceptions inherit from. 

10""" 

11 

12from __future__ import annotations 

13 

14 

15class EzCompilerError(Exception): 

16 """Base exception for all EzCompiler utils errors."""