refactor: Delete the dataset to verify whether it is in use (#5112)

This commit is contained in:
Summer-Gu 2024-06-14 03:25:38 +08:00 committed by GitHub
commit 7f98c2ea3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 36 additions and 12 deletions

View file

@ -3,3 +3,7 @@ from services.errors.base import BaseServiceError
class DatasetNameDuplicateError(BaseServiceError):
pass
class DatasetInUseError(BaseServiceError):
pass