mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-21 20:28:11 +01:00
9 lines
No EOL
259 B
PHP
9 lines
No EOL
259 B
PHP
<?php
|
|
|
|
namespace OCA\OrganizationFolders\Errors;
|
|
|
|
class OrganizationFolderMemberNotFound extends NotFoundException {
|
|
public function __construct($id) {
|
|
parent::__construct(\OCA\OrganizationFolders\Db\OrganizationFolderMember::class, ["id" => $id]);
|
|
}
|
|
} |