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

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

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