Files
oficial/app/src/Exception/ServiceAction/Delete.php
2025-02-24 12:41:00 -03:00

16 lines
354 B
PHP

<?php
namespace Incoviba\Exception\ServiceAction;
use Throwable;
use Incoviba\Exception\ServiceActionFail;
class Delete extends ServiceActionFail
{
public function __construct(string $service, Throwable $previous = null)
{
$action = 'delete';
$code = 4;
parent::__construct($service, $action, $code, $previous);
}
}