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

dart2.api_exception.mustache Maven / Gradle / Ivy

There is a newer version: 7.7.0
Show newest version
{{>header}}
{{>part_of}}
class ApiException implements Exception {
  ApiException(this.code, this.message);

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

  int code = 0;
  String? message;
  Exception? innerException;
  StackTrace? stackTrace;

  @override
  String toString() {
    if (message == null) {
      return 'ApiException';
    }
    if (innerException == null) {
      return 'ApiException $code: $message';
    }
    return 'ApiException $code: $message (Inner exception: $innerException)\n\n$stackTrace';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy