mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-12-06 11:22:41 +01:00
Added organization folder member entity, mapper, service, enums and exceptions
This commit is contained in:
parent
ddb1854e28
commit
afb731e56b
5 changed files with 302 additions and 0 deletions
9
lib/Errors/OrganizationFolderMemberNotFound.php
Normal file
9
lib/Errors/OrganizationFolderMemberNotFound.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
namespace OCA\OrganizationFolders\Errors;
|
||||
|
||||
class OrganizationFolderMemberNotFound extends NotFoundException {
|
||||
public function __construct($id) {
|
||||
parent::__construct(\OCA\OrganizationFolders\Db\OrganizationFolderMember::class, ["id" => $id]);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue