mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-22 04:38:09 +01:00
9 lines
No EOL
285 B
PHP
9 lines
No EOL
285 B
PHP
<?php
|
|
|
|
namespace OCA\OrganizationFolders\Errors;
|
|
|
|
class OrganizationNotFound extends NotFoundException {
|
|
public function __construct(string $provider, int $id) {
|
|
parent::__construct(\OCA\OrganizationFolders\Model\Organization::class, ["provider" => $provider, "id" => $id]);
|
|
}
|
|
} |