mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-11-24 04:23:41 +00:00
10 lines
174 B
Plaintext
10 lines
174 B
Plaintext
package {{apiPackage}};
|
|
|
|
public class ApiException extends Exception{
|
|
private int code;
|
|
public ApiException (int code, String msg) {
|
|
super(msg);
|
|
this.code = code;
|
|
}
|
|
}
|