16 lines
402 B
PHP
16 lines
402 B
PHP
<?php
|
|
namespace Incoviba\Exception;
|
|
|
|
use Exception;
|
|
use Throwable;
|
|
|
|
class ServiceActionFail extends Exception
|
|
{
|
|
public function __construct(string $service,string $action = "__invoke", int $code = 0, Throwable $previous = null)
|
|
{
|
|
$message = "Action {$action} failed for Service {$service}.";
|
|
$code = 700 + $code;
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
}
|