123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class PasswordHashException extends ServerException
- {
- public $obj;
- public function __construct($msg=null, $code=500)
- {
- if ($msg === null) {
- $msg = _('Password hashing failed.');
- }
- parent::__construct($msg, $code);
- }
- }
|