mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-13 15:54:25 +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);
|
|
|
|
} |