0
0
Ответвление 0
зеркало из https://github.com/verdigado/organization_folders.git синхронизирован 2024-12-06 11:22:41 +01:00
organization_folders/lib/Errors/OrganizationNotFound.php

9 строки
Без EOL
273 Б
PHP

<?php
namespace OCA\OrganizationFolders\Errors;
class OrganizationNotFound extends NotFoundException {
public function __construct($provider, $id) {
parent::__construct(OCA\OrganizationFolders\Model\Organization::class, ["provider" => $provider, "id" => $id]);
}
}