mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-20 23:05:09 +00:00
11 lines
298 B
Python
11 lines
298 B
Python
"""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"""
|