mathy/mathstream/exceptions.py
2025-11-05 08:35:01 +01:00

7 lines
209 B
Python

class MathStreamError(Exception):
"""Base class for mathstream-specific errors."""
class DivideByZeroError(MathStreamError):
"""Raised when division or modulo operations encounter a zero divisor."""