16 lines
364 B
PHP
16 lines
364 B
PHP
<?php
|
|
|
|
namespace Safe\Exceptions;
|
|
|
|
/**
|
|
* @deprecated This exception is deprecated
|
|
*/
|
|
class PasswordException extends \ErrorException implements SafeExceptionInterface
|
|
{
|
|
public static function createFromPhpError(): self
|
|
{
|
|
$error = error_get_last();
|
|
return new self($error['message'] ?? 'An error occured', 0, $error['type'] ?? 1);
|
|
}
|
|
}
|