mirror of
https://github.com/verdigado/groupfolder_tags.git
synced 2024-11-21 12:47:27 +01:00
added error classes
This commit is contained in:
parent
85ba3f7ce7
commit
afa35503d8
2 changed files with 12 additions and 0 deletions
6
lib/Errors/NotFoundException.php
Normal file
6
lib/Errors/NotFoundException.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace OCA\GroupfolderTags\Errors;
|
||||
|
||||
abstract class NotFoundException extends \Exception {
|
||||
}
|
6
lib/Errors/TagNotFound.php
Normal file
6
lib/Errors/TagNotFound.php
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace OCA\GroupfolderTags\Errors;
|
||||
|
||||
class TagNotFound extends NotFoundException {
|
||||
}
|
Loading…
Reference in a new issue