mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-10-14 00:13:50 +00:00
9 lines
141 B
Plaintext
9 lines
141 B
Plaintext
part of api;
|
|
|
|
class ApiException implements Exception {
|
|
int code = 0;
|
|
String message = null;
|
|
|
|
ApiException(this.code, this.message);
|
|
|
|
} |