minitrino.core.errors module#
Error classes for Minitrino CLI.
- exception minitrino.core.errors.MinitrinoError(msg: str = '')[source][source]#
Bases:
ExceptionBase exception class for all Minitrino-related errors.
- Parameters:
msg (str, optional) – Message to log and include in the exception.
- exception minitrino.core.errors.UserError(msg: str = '', hint_msg: str = '')[source][source]#
Bases:
MinitrinoErrorUser errors that Minitrino can safely log and display.
- Parameters:
msg (str, optional) – Message to log and include in the exception.
hint_msg (str, optional) – Additional guidance for resolving the issue.