Merge pull request #11138 from appwrite/fix-general-unknown

This commit is contained in:
Jake Barnby 2026-01-15 16:57:50 +13:00 committed by GitHub
commit 6e292349b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,6 +8,7 @@ use Appwrite\Event\Func;
use Appwrite\Event\Realtime;
use Appwrite\Event\StatsUsage;
use Appwrite\Event\Webhook;
use Appwrite\Extend\Exception as AppwriteException;
use Appwrite\Utopia\Response\Model\Execution;
use Exception;
use Executor\Executor;
@ -661,7 +662,11 @@ class Functions extends Action
->trigger();
if (!empty($error)) {
throw new Exception($error, $errorCode);
throw new AppwriteException(
AppwriteException::GENERAL_SERVER_ERROR,
$error ?: 'Function execution failed with no error message',
$errorCode
);
}
}
}