mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
1f247ff541
(We should consolidate that AssetCheckoutRequest for the API)
13 lines
210 B
PHP
13 lines
210 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use Exception;
|
|
class CheckoutNotAllowed extends Exception
|
|
{
|
|
public function __toString()
|
|
{
|
|
return "A checkout is not allowed under these circumstances";
|
|
}
|
|
}
|