7 lines
209 B
Python
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."""
|