exceptions.py 296 B

12345678910
  1. class DeploymentIsBeingDeletedError(Exception):
  2. """Raised when an operation is attempted on a deployment that is being deleted."""
  3. pass
  4. class ExternalScalerDisabledError(Exception):
  5. """Raised when the external scaling API is used but external_scaler_enabled is False."""
  6. pass