AuditionAdminBilling/app/Exceptions/InvoiceLockedException.php

14 lines
226 B
PHP

<?php
namespace App\Exceptions;
use Exception;
class InvoiceLockedException extends Exception
{
public function __construct()
{
parent::__construct('Cannot modify a posted, void, or paid invoice.');
}
}