mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-22 04:38:09 +01:00
10 lines
231 B
PHP
10 lines
231 B
PHP
|
<?php
|
||
|
|
||
|
namespace OCA\OrganizationFolders\Errors;
|
||
|
|
||
|
class ResourceNameNotUnique extends \RuntimeException {
|
||
|
public function __construct() {
|
||
|
parent::__construct("Resource cannot have the same name as sibling resource");
|
||
|
}
|
||
|
}
|