NotFoundException.java 384 Bytes
Newer Older
EnesKarakas's avatar
EnesKarakas committed
1
2
3
4
package io.swagger.api;

@javax.annotation.Generated(value = "io.swagger.codegen.v3.generators.java.SpringCodegen", date = "2024-06-04T09:41:03.559554872Z[GMT]")
public class NotFoundException extends ApiException {
EnesKarakas's avatar
EnesKarakas committed
5
    @SuppressWarnings("unused")
EnesKarakas's avatar
EnesKarakas committed
6
    private int code;
EnesKarakas's avatar
EnesKarakas committed
7
8

    public NotFoundException(int code, String msg) {
EnesKarakas's avatar
EnesKarakas committed
9
10
11
12
        super(code, msg);
        this.code = code;
    }
}