themichaelhall/bluemvc-fakes

View on GitHub
src/Exceptions/InvalidUploadedFileException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * This file is a part of the bluemvc-fakes package.
 *
 * Read more at https://bluemvc.com/
 */

declare(strict_types=1);

namespace BlueMvc\Fakes\Exceptions;

use Exception;

/**
 * Exception used when passed an invalid uploaded file name.
 *
 * @since 1.0.0
 */
class InvalidUploadedFileException extends Exception
{
}