2018-11-20 12:52:24 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2024-09-08 13:46:22 +00:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2018-11-20 12:52:24 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-28 19:36:24 +00:00
|
|
|
namespace OCA\Social\Exceptions;
|
2018-11-20 12:52:24 +00:00
|
|
|
|
2019-06-28 19:36:24 +00:00
|
|
|
use Exception;
|
2018-11-20 12:52:24 +00:00
|
|
|
|
2019-07-03 15:46:09 +00:00
|
|
|
class ActionDoesNotExistException extends Exception {
|
2018-11-20 12:52:24 +00:00
|
|
|
}
|