You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bazarr/libs/smmap/exc.py

12 lines
298 B

"""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"""