Refactor to custom exceptions & minor code style fixes

This commit is contained in:
Victor Gonzalez
2019-01-28 18:52:53 -05:00
parent ab17916b89
commit 7d09b428ce
5 changed files with 87 additions and 30 deletions

View File

@@ -0,0 +1,10 @@
<?php
namespace distinctm\LaravelDataSync\Exceptions;
use Exception;
class FileDirectoryNotFoundException extends Exception
{
protected $message = 'Specified sync file directory does not exist';
}