Exceptions
April 13, 2026 ยท View on GitHub
Auto-generated documentation for musicalgestures._exceptions module.
Typed exception hierarchy for MGT-python.
- Mgt-python / Modules / Musicalgestures / Exceptions
All library-specific errors inherit from class MgError so that callers
can catch any toolbox error with a single except MgError.
MgDependencyError
class MgDependencyError(MgError):
Raised when an optional dependency is not installed.
See also
MgError
class MgError(Exception):
Base class for all MGT-python exceptions.
MgIOError
class MgIOError(MgError):
Raised for file I/O failures (missing files, permission errors, etc.).
See also
MgInputError
class MgInputError(MgError):
Raised when a user-supplied argument is invalid.
See also
MgProcessingError
class MgProcessingError(MgError):
Raised when a processing step fails unexpectedly.