php-sap/interfaces

View on GitHub
src/exceptions/IInvalidArgumentException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace phpsap\interfaces\exceptions;

/**
 * Interface IInvalidArgumentException
 *
 * A given argument is of invalid type or the value is not according to the
 * expectations if the method.
 *
 * @package phpsap\interfaces\exceptions
 * @author  Gregor J.
 * @license MIT
 */
interface IInvalidArgumentException extends ISapException
{
}