Class DebugError Stay organized with collections Save and categorize content based on your preferences.
Page Summary
DebugError is an error only visible to connector admins.
The
setText()method is used to set the error text which is only shown to admins.The
throwException()method triggers the debug error to be thrown.
An error that is only visible to admins of the connector.
constcc=DataStudioApp.createCommunityConnector();cc.newDebugError().setText('This is the debug error text.').throwException();
Methods
| Method | Return type | Brief description |
|---|---|---|
print | String | Prints the JSON representation of this object. |
set | Debug | Sets the text of the debug error, which is only shown to admins. |
throw | void | Triggers this exception to be thrown. |
Detailed documentation
printJson()
Prints the JSON representation of this object. This is for debugging only.
Return
String
setText(text)
Sets the text of the debug error, which is only shown to admins.
Parameters
| Name | Type | Description |
|---|---|---|
text | String | The error text. |
Return
Debug — This object, for chaining.
throwException()
Triggers this exception to be thrown.
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-11 UTC.