Просмотр файла libarea-0.9/app/Exception/AutorizationException.php
<?php
declare(strict_types=1);
namespace App\Exception;
class AutorizationException extends \Exception
{
public static function Smtp(string $value): self
{
return new self("Send (smtp) error: `{$value}`.");
}
}