0
0
Fork 0
mirror of https://github.com/verdigado/organization_folders.git synced 2024-11-22 12:40:28 +01:00
organization_folders/lib/Errors/ResourceNotFound.php

9 lines
227 B
PHP
Raw Normal View History

2024-10-30 01:51:48 +01:00
<?php
namespace OCA\OrganizationFolders\Errors;
class ResourceNotFound extends NotFoundException {
public function __construct($id) {
2024-10-30 04:41:30 +01:00
parent::__construct(\OCA\OrganizationFolders\Db\Resource::class, ["id" => $id]);
2024-10-30 01:51:48 +01:00
}
}