OzanKurt/LiveCoding-API

View on GitHub
src/Exceptions/InvalidPathException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Kurt\LiveCoding\Exceptions;

/**
 * Class InvalidPathException
 * @package Kurt\LiveCoding\Exceptions
 */
class InvalidPathException extends \Exception
{
    protected $message = 'Please provide a valid `path` for the file storage.';
}