TF-3096 Add PublicAsset create quota exception

This commit is contained in:
DatDang
2024-08-20 10:24:28 +07:00
committed by Dat H. Pham
parent df692d8d43
commit 2754451d9e
11 changed files with 40 additions and 14 deletions
@@ -2,6 +2,12 @@ class CannotCreatePublicAssetException implements Exception {
const CannotCreatePublicAssetException();
}
class PublicAssetQuotaExceededException implements Exception {
const PublicAssetQuotaExceededException({required this.message});
final String? message;
}
class CannotDestroyPublicAssetException implements Exception {
const CannotDestroyPublicAssetException();
}