mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-23 01:00:52 +00:00
11 lines
240 B
Plaintext
11 lines
240 B
Plaintext
package {{apiPackage}};
|
|
|
|
{{>generatedAnnotation}}
|
|
public class NotFoundException extends ApiException {
|
|
private int code;
|
|
public NotFoundException (int code, String msg) {
|
|
super(code, msg);
|
|
this.code = code;
|
|
}
|
|
}
|