first commit

This commit is contained in:
Leonid Pershin
2026-08-21 02:42:48 +03:00
commit 167d07a733
46 changed files with 3334 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
"""User-facing errors without tracebacks."""
from __future__ import annotations
class GpuRentError(Exception):
"""Printed as a short message; process exits 1."""
class ConfigError(GpuRentError):
pass
class CloudError(GpuRentError):
pass
class NotReadyError(GpuRentError):
"""Command exists in the spec but is not implemented yet."""