Skip to content

Commit

Permalink
Added the NotFoundExceptions to the IoExceptions.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Brecht-Precht committed Apr 29, 2016
1 parent cbb92bc commit 280b705
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/IoException/FileNotFoundException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace CommonException\IoException;

/**
* Class FileNotFoundException
*
* @package CommonException\IoException
*/
class FileNotFoundException extends Base\IoException
{

}
13 changes: 13 additions & 0 deletions src/IoException/FolderNotFoundException.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

namespace CommonException\IoException;

/**
* Class FolderNotFoundException
*
* @package CommonException\IoException
*/
class FolderNotFoundException extends Base\IoException
{

}

0 comments on commit 280b705

Please sign in to comment.