1
0
mirror of https://github.com/elyby/accounts.git synced 2025-03-12 11:19:22 +05:30
accounts/common/emails/exceptions/CannotRenderEmailException.php

16 lines
299 B
PHP

<?php
declare(strict_types=1);
namespace common\emails\exceptions;
use Exception;
use Throwable;
class CannotRenderEmailException extends Exception {
public function __construct(Throwable $previous = null) {
parent::__construct('Unable to render a template', 0, $previous);
}
}