forked from loafle/openapi-generator-original
9 lines
141 B
Dart
9 lines
141 B
Dart
part of api;
|
|
|
|
class ApiException implements Exception {
|
|
int code = 0;
|
|
String message = null;
|
|
|
|
ApiException(this.code, this.message);
|
|
|
|
} |