mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
14 lines
255 B
Python
14 lines
255 B
Python
from typing import Optional
|
|
|
|
|
|
class PackageNotFoundException(Exception):
|
|
|
|
def __init__(self, name: str):
|
|
self.name = name
|
|
|
|
|
|
class PackageInHoldException(Exception):
|
|
|
|
def __init__(self, name: Optional[str] = None):
|
|
self.name = name
|