. */ namespace SP\Services\User; use Exception; use SP\Core\Exceptions\SPException; /** * Class UpdatedMasterPassException * * @package SP\Services\User */ final class UpdatedMasterPassException extends SPException { /** * SPException constructor. * * @param string $type * @param int $code * @param Exception $previous */ public function __construct($type, $code = 0, Exception $previous = null) { parent::__construct(__u('Master password updated'), $type, __u('Please, restart the session for update it'), $code, $previous); } }