Spaces:
Running
Running
| namespace App\Domain\Analytics; | |
| use App\Shared\Exceptions\ApiException; | |
| class InvalidTransitionException extends ApiException | |
| { | |
| public function __construct(string $from, string $to) | |
| { | |
| parent::__construct('ANALYTICS_INVALID_TRANSITION', "{$from} -> {$to} is not an allowed transition.", [], 422); | |
| } | |
| } | |