stk2k/file-system

View on GitHub
src/Exception/FileOperatorException.php

Summary

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

namespace stk2k\filesystem\Exception;

use Throwable;

class FileOperatorException extends FileSystemException
{
    /**
     * FileInputException constructor.
     *
     * @param string $message
     * @param Throwable|null $prev
     */
    public function __construct(string $message, Throwable $prev = NULL)
    {
        parent::__construct($message, $prev);
    }
}