1 | <?php |
||
2 | |||
3 | namespace GloBee\PaymentApi\Exceptions; |
||
4 | |||
5 | class LockedPropertyException extends \Exception |
||
6 | { |
||
7 | public function __construct($propertyName) |
||
0 ignored issues
–
show
Coding Style
Documentation
introduced
by
![]() |
|||
8 | { |
||
9 | parent::__construct('Property "'.$propertyName.'" is locked and can\'t be modified.'); |
||
10 | } |
||
11 | } |
||
12 |