Class UserError

用户错误

向连接器用户显示的错误。

const cc = DataStudioApp.createCommunityConnector();

cc.newUserError()
    .setText('This is the debug error text.')
    .setDebugText('This text is only shown to admins.')
    .throwException();

方法

方法返回类型简介
printJson()String输出此对象的 JSON 表示法。
setDebugText(text)UserError设置调试错误的文本,该文本仅向管理员显示。
setText(text)UserError设置用户错误的文本。
throwException()void触发系统抛出此异常。

详细文档

printJson()

输出此对象的 JSON 表示法。这仅用于调试。

返回

String


setDebugText(text)

设置调试错误的文本,该文本仅向管理员显示。

参数

名称类型说明
textString错误文本。

返回

UserError - 此对象,用于链式调用。


setText(text)

设置用户错误的文本。

参数

名称类型说明
textString错误文本。

返回

UserError - 此对象,用于链式调用。


throwException()

触发系统抛出此异常。