First basic ready-to-use implementation
This commit is contained in:
11
src/Exceptions/CannotCreateDirectoryException.php
Normal file
11
src/Exceptions/CannotCreateDirectoryException.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PmConverter\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class CannotCreateDirectoryException extends Exception
|
||||
{
|
||||
}
|
||||
11
src/Exceptions/DirectoryIsNotReadableException.php
Normal file
11
src/Exceptions/DirectoryIsNotReadableException.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PmConverter\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class DirectoryIsNotReadableException extends Exception
|
||||
{
|
||||
}
|
||||
11
src/Exceptions/DirectoryIsNotWriteableException.php
Normal file
11
src/Exceptions/DirectoryIsNotWriteableException.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PmConverter\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class DirectoryIsNotWriteableException extends Exception
|
||||
{
|
||||
}
|
||||
11
src/Exceptions/DirectoryNotExistsException.php
Normal file
11
src/Exceptions/DirectoryNotExistsException.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PmConverter\Exceptions;
|
||||
|
||||
use Exception;
|
||||
|
||||
class DirectoryNotExistsException extends Exception
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user