2017-08-31 11:14:21 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Exceptions;
|
|
|
|
|
|
|
|
use Exception;
|
|
|
|
class CheckoutNotAllowed extends Exception
|
|
|
|
{
|
|
|
|
public function __toString()
|
|
|
|
{
|
2017-10-19 15:51:55 -07:00
|
|
|
return "A checkout is not allowed under these circumstances";
|
2017-08-31 11:14:21 -07:00
|
|
|
}
|
|
|
|
}
|