This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
bee-backend-ARCHIVED/src/Infrastructure/Exception/src/ErrorDomain.php
2024-10-29 20:32:35 +00:00

16 lines
344 B
PHP

<?php
namespace Bee\Infrastructure\Exception;
enum ErrorDomain : string {
case Generic = 'Generic';
case Colony = 'Colony';
case Role = 'Role';
case User = 'User';
case UserPassword = 'UserPassword';
case Registration = 'Registration';
case Product = 'Product';
case Mail = 'Mail';
case Login = 'Login';
}