k911/uri-builder

View on GitHub
src/Exception/InvalidArgumentException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
declare(strict_types=1);

namespace K911\UriBuilder\Exception;

use InvalidArgumentException as BaseException;

/**
 * Exception thrown if an argument does not match with the expected value
 * used in the UriBuilder library.
 */
class InvalidArgumentException extends BaseException implements UriBuilderExceptionInterface
{
}