mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 06:04:08 -08:00
13 lines
204 B
PHP
13 lines
204 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Exceptions;
|
||
|
|
||
|
use Exception;
|
||
|
class CheckoutNotAllowed extends Exception
|
||
|
{
|
||
|
public function __toString()
|
||
|
{
|
||
|
"A checkout is not allowed under these circumstances";
|
||
|
}
|
||
|
}
|