aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/src/Form/FormSubmissionFailureException.php
blob: 0aa2c9080882828ffbd7c215bef6130c5644be0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

declare(strict_types=1);

namespace Nsfisis\Albatross\Form;

use RuntimeException;
use Throwable;

final class FormSubmissionFailureException extends RuntimeException
{
    public function __construct(
        string $message = '',
        int $code = 400,
        Throwable $previous = null,
    ) {
        parent::__construct($message, $code, $previous);
    }
}