mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-13 15:52:56 +00:00
16 lines
327 B
PHP
16 lines
327 B
PHP
<?php
|
|
/**
|
|
* Nexmo Client Library for PHP
|
|
*
|
|
* @copyright Copyright (c) 2016 Nexmo, Inc. (http://nexmo.com)
|
|
* @license https://github.com/Nexmo/nexmo-php/blob/master/LICENSE.txt MIT License
|
|
*/
|
|
|
|
namespace Nexmo\Client\Exception;
|
|
|
|
use Nexmo\Entity\HasEntityTrait;
|
|
|
|
class Request extends Exception
|
|
{
|
|
use HasEntityTrait;
|
|
} |