mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-02-11 08:23:42 +08:00
10 lines
189 B
PHP
10 lines
189 B
PHP
<?php
|
|
|
|
namespace Buzz\Exception;
|
|
|
|
/**
|
|
* Thrown when an invalid argument is provided.
|
|
*/
|
|
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
|
|
{
|
|
}
|