mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 19:33:55 +00:00
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);
|
|
|
|
} |