accounts/common/emails/exceptions/CannotRenderEmailException.php

16 lines
299 B
PHP
Raw Normal View History

<?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);
}
}