com.github.dinuta.estuary.testrunner.api.NotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testrunner Show documentation
Show all versions of testrunner Show documentation
RestAPI service which runs commands and tests
The newest version!
package com.github.dinuta.estuary.testrunner.api;
@javax.annotation.Generated(value = "io.swagger.codegen.languages.SpringCodegen", date = "2020-06-14T18:02:50.529Z")
public class NotFoundException extends ApiException {
private int code;
public NotFoundException(int code, String msg) {
super(code, msg);
this.code = code;
}
}