toString method

  1. @override
String toString()
override

Converts the exception to a string.

Implementation

@override
String toString() {
  return ["DexcomAuthorizationException", if (message != null) message]
      .join(": ");
}