Class DebugError

DebugError

An error that is only visible to admins of the connector.

var cc = DataStudioApp.createCommunityConnector();

cc.newDebugError()
  .setText("This is the debug error text.")
  .throwException();

Methods

MethodReturn typeBrief description
printJson()StringPrints the JSON representation of this object.
setText(text)DebugErrorSets the text of the debug error, which is only shown to admins.
throwException()voidTriggers 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

NameTypeDescription
textStringThe error text.

Return

DebugError — This object, for chaining.


throwException()

Triggers this exception to be thrown.