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()

觸發這個例外狀況。