FIX: ServiceActions

This commit is contained in:
Juan Pablo Vial
2025-03-04 13:52:01 -03:00
parent 5914176b8f
commit 621da92b68
5 changed files with 75 additions and 0 deletions

View File

@ -0,0 +1,15 @@
<?php
namespace Incoviba\Exception\ServiceAction;
use Throwable;
use Incoviba\Exception\ServiceActionFail;
class Create extends ServiceActionFail
{
public function __construct(string $service, Throwable $previous = null)
{
$action = 'create';
$code = 1;
parent::__construct($service, $action, $code, $previous);
}
}