Files
oficial/app/src/Exception/ServiceAction/Create.php
aldarien 307f2ac7d7 feature/cierres (#25)
Varios cambios

Co-authored-by: Juan Pablo Vial <jpvialb@incoviba.cl>
Reviewed-on: #25
2025-07-22 13:18:00 +00:00

16 lines
355 B
PHP

<?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);
}
}