ameliabooking
/
vendor
/
mailgun
/
mailgun-php
/
src
/
Mailgun
/
Connection
/
Exceptions
/
MissingRequiredParameters.php
ameliabooking
/
vendor
/
mailgun
/
mailgun-php
/
src
/
Mailgun
/
Connection
/
Exceptions
Last commit date
GenericHTTPError.php
7 years ago
InvalidCredentials.php
7 years ago
MissingEndpoint.php
7 years ago
MissingRequiredParameters.php
7 years ago
NoDomainsConfigured.php
7 years ago
MissingRequiredParameters.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * Copyright (C) 2013 Mailgun |
| 5 | * |
| 6 | * This software may be modified and distributed under the terms |
| 7 | * of the MIT license. See the LICENSE file for details. |
| 8 | */ |
| 9 | |
| 10 | namespace Mailgun\Connection\Exceptions; |
| 11 | |
| 12 | use Mailgun\Exception; |
| 13 | |
| 14 | /** |
| 15 | * @deprecated Will be removed in 3.0 |
| 16 | */ |
| 17 | class MissingRequiredParameters extends \Exception implements Exception |
| 18 | { |
| 19 | } |
| 20 |