Skip to content
Snippets Groups Projects
ErrorCode.php 175 B
Newer Older
<?php

namespace App\Shared\Error;

enum ErrorCode: int
{
    case EntityNotFound = 10;
    case ValidateFailed = 20;
    case NotExcepted = 50;

    case UuidInvalid = 60;