GloBee-Official /
payment-api-php
| 1 | <?php |
||
| 2 | |||
| 3 | namespace GloBee\PaymentApi\Exceptions; |
||
| 4 | |||
| 5 | class UnknownPropertyException extends \Exception |
||
| 6 | { |
||
| 7 | 1 | public function __construct($propertyName) |
|
|
0 ignored issues
–
show
Coding Style
Documentation
introduced
by
Loading history...
|
|||
| 8 | { |
||
| 9 | 1 | parent::__construct('Unknown Property: '.$propertyName); |
|
| 10 | 1 | } |
|
| 11 | } |
||
| 12 |