mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-17 21:12:20 +01:00
Live transcriptions is an optional feature that is only available if the external app "live_transcription" is available. Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
12 lines
255 B
PHP
12 lines
255 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Talk\Exceptions;
|
|
|
|
class LiveTranscriptionAppAPIException extends \Exception {
|
|
}
|