mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2025-12-28 00:29:56 -05:00
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 {
|
|
}
|