fruivita/corporate

View on GitHub
src/Exceptions/FileNotReadableException.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace FruiVita\Corporate\Exceptions;

use Exception;

/**
 * File could not be read.
 *
 * @see https://laravel.com/docs/9.x/errors
 */
class FileNotReadableException extends Exception
{
    public function __construct()
    {
        parent::__construct(__('The file entered could not be read'));
    }
}