com.reprezen.genflow.openapi3.doc.BadReferenceException Maven / Gradle / Ivy
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