serp-spider/search-engine-google

View on GitHub
src/Exception/InvalidDOMException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * @license see LICENSE
 */

namespace Serps\SearchEngine\Google\Exception;

use Serps\Exception;

class InvalidDOMException extends Exception
{

    public function __construct($message)
    {
        parent::__construct($message . ' Google DOM has possibly changed and an update may be required.');
    }
}