for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/**
* This file is part of the Numverify API Client for PHP.
*
* (c) 2024 Eric Sizemore <[email protected]>
* (c) 2018-2021 Mark Rogoyski <[email protected]>
* @license The MIT License
* For the full copyright and license information, please view the LICENSE.md
* file that was distributed with this source code.
*/
namespace Numverify\Exception;
use RuntimeException;
* Thrown when the Numverify API returns an API response that is unexpected.
class NumverifyApiResponseException extends RuntimeException {}