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/OrganizationNotFound.php

9 lines
274 B
PHP
Raw Normal View History

<?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]);
}
}