org.openl.rules.project.openapi.OpenApiGenerationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.openl.rules.project.openapi Show documentation
Show all versions of org.openl.rules.project.openapi Show documentation
OpenAPI Tools for OpenL Project
package org.openl.rules.project.openapi;
public class OpenApiGenerationException extends Exception {
private static final long serialVersionUID = 4688639540320312954L;
public OpenApiGenerationException(String message) {
super(message);
}
public OpenApiGenerationException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy