first commit
This commit is contained in:
@@ -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."""
|
||||
Reference in New Issue
Block a user