mirror of
https://github.com/owncloud/ocis.git
synced 2025-04-18 23:44:07 +03: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 {
|
|
}
|