mailgun-php/src/Exception/InvalidArgumentException.php

22 lines
405 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
2016-11-23 16:02:12 -06:00
/*
* Copyright (C) 2013 Mailgun
2016-11-23 16:02:12 -06:00
*
* This software may be modified and distributed under the terms
2016-12-06 12:12:52 -06:00
* of the MIT license. See the LICENSE file for details.
2016-11-23 16:02:12 -06:00
*/
namespace Mailgun\Exception;
use Mailgun\Exception;
/**
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/
final class InvalidArgumentException extends \InvalidArgumentException implements Exception
{
}