mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-17 22:30:53 +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;
|
|
}
|
|
}
|