Files
core/src/Shipping/Carriers/Acs/Exceptions/AcsApiException.php
T

14 lines
280 B
PHP
Raw Normal View History

2026-07-19 00:50:51 +03:00
<?php
namespace Modules\Core\Shipping\Carriers\Acs\Exceptions;
use RuntimeException;
class AcsApiException extends RuntimeException
{
public function __construct(string $message, public readonly array $tableOutput = [])
{
parent::__construct($message);
}
}