mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-04-22 02:38:32 -05:00
d8d7b700cd
Signed-off-by: prashant-gurung899 <prasantgrg777@gmail.com>
15 lines
246 B
PHP
15 lines
246 B
PHP
<?php
|
|
/**
|
|
* @author Sagar Gurung <sagar@jankatitech.com>
|
|
*
|
|
*/
|
|
namespace TestHelpers;
|
|
use Exception;
|
|
|
|
/**
|
|
* Class SpaceNotFoundException
|
|
* Exception when space id for a user is not found
|
|
*/
|
|
class SpaceNotFoundException extends Exception {
|
|
}
|