com.reprezen.genflow.openapi3.doc.BadReferenceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi3-doc Show documentation
Show all versions of openapi3-doc Show documentation
RepreZen Documentation GenTemplate for OpenAPI v3 Models
The newest version!
package com.reprezen.genflow.openapi3.doc;
@SuppressWarnings("all")
public class BadReferenceException extends Exception {
private final String refString;
public BadReferenceException(final String refString) {
super(("Invalid reference: " + refString));
this.refString = refString;
}
public String getRefString() {
return this.refString;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy