1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2024-12-27 18:17:46 +00:00
bazarr/libs/smmap/exc.py

12 lines
298 B
Python
Raw Normal View History

"""Module with system exceptions"""
class MemoryManagerError(Exception):
"""Base class for all exceptions thrown by the memory manager"""
class RegionCollectionError(MemoryManagerError):
"""Thrown if a memory region could not be collected, or if no region for collection was found"""