All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springdoc.sample2.ApiException Maven / Gradle / Ivy

There is a newer version: 3.1.2
Show newest version
package org.springdoc.sample2;

public final class ApiException extends Exception {

	private static final long serialVersionUID = 1L;
	@SuppressWarnings("unused")

	private final int code;
    public ApiException (int code, String msg) {
        super(msg);
        this.code = code;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy