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.

12 lines
298B

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