0
0
Fork 0
mirror of https://github.com/verdigado/groupfolder_tags.git synced 2024-10-22 15:39:48 +02:00

added error classes

This commit is contained in:
Jonathan Treffler 2024-07-31 16:37:40 +00:00
parent 85ba3f7ce7
commit afa35503d8
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,6 @@
<?php
namespace OCA\GroupfolderTags\Errors;
abstract class NotFoundException extends \Exception {
}

View file

@ -0,0 +1,6 @@
<?php
namespace OCA\GroupfolderTags\Errors;
class TagNotFound extends NotFoundException {
}