您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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