25개 이상의 토픽을 선택하실 수 없습니다. 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"""