All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dart.api_exception.mustache Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
part of {{pubName}}.api;

class ApiException implements Exception {
  int code = 0;
  String message = null;
  Exception innerException = null;
  StackTrace stackTrace = null;

  ApiException(this.code, this.message);

  ApiException.withInner(this.code, this.message, this.innerException, this.stackTrace);

  String toString() {
    if (message == null) return "ApiException";

    if (innerException == null) {
      return "ApiException $code: $message";
    }

    return "ApiException $code: $message (Inner exception: ${innerException})\n\n" +
        stackTrace.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy