Skip to content
Snippets Groups Projects
SettlementNotFoundException.php 249 B
Newer Older
<?php

namespace App\Exception;

use RuntimeException;

class SettlementNotFoundException extends RuntimeException
{
    public function __construct()
    {
        parent::__construct("Settlement not found", ErrorCodeEnum::NotFound->value);
    }
}