Google Apps Script API
    Preparing search index...

    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();
    
    interface DebugError {
        printJson(): string;
        setText(text: string): DebugError;
        throwException(): never;
    }
    Index

    Methods