themichaelhall/datatypes

View on GitHub
src/Net/Exceptions/UrlPathInvalidArgumentException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * This file is a part of the datatypes package.
 *
 * https://github.com/themichaelhall/datatypes
 */

declare(strict_types=1);

namespace DataTypes\Net\Exceptions;

use InvalidArgumentException;

/**
 * Exception used when passed invalid argument in UrlPath class.
 *
 * @since 1.0.0
 */
class UrlPathInvalidArgumentException extends InvalidArgumentException
{
}