mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-01-27 11:45:14 +00:00
11 lines
207 B
PHP
11 lines
207 B
PHP
<?php
|
|
|
|
namespace nullthoughts\LaravelDataSync\Exceptions;
|
|
|
|
use Exception;
|
|
|
|
class FileDirectoryNotFoundException extends Exception
|
|
{
|
|
protected $message = 'Specified sync file directory does not exist';
|
|
}
|