themichaelhall/datatypes

View on GitHub
src/System/Exceptions/FilePathLogicException.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\System\Exceptions;

use LogicException;

/**
 * Exception used on logic failure in FilePath class.
 *
 * @since 1.0.0
 */
class FilePathLogicException extends LogicException
{
}