mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-03 16:43:03 +00:00
10 lines
258 B
PHP
10 lines
258 B
PHP
<?php
|
||
class PasswordException extends Exception {
|
||
public function __construct(
|
||
$message = 'Не допускается прямое обращение к свойству password'
|
||
)
|
||
{
|
||
parent::__construct($message, 1002);
|
||
}
|
||
}
|