| 1 |
<?php |
| 2 |
|
| 3 |
namespace Give\ServiceProviders\Exceptions; |
| 4 |
|
| 5 |
use Give\Framework\Exceptions\Primitives\Exception; |
| 6 |
|
| 7 |
/** |
| 8 |
* @since 2.23.1 |
| 9 |
*/ |
| 10 |
class UnknownRequestTypeException extends Exception |
| 11 |
{ |
| 12 |
public function __construct($type, $code = 0, $previous = null) |
| 13 |
{ |
| 14 |
parent::__construct("Request $type is not supported", $code, $previous); |
| 15 |
} |
| 16 |
} |
| 17 |
|