openapi-generator/samples/client/petstore/dart/lib/api_exception.dart
Yissachar Radcliffe e72a53448e Add Dart support
2015-09-06 18:35:29 -04:00

9 lines
141 B
Dart

part of api;
class ApiException implements Exception {
int code = 0;
String message = null;
ApiException(this.code, this.message);
}