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

net.sourceforge.plantuml.dot.UnparsableGraphvizException Maven / Gradle / Ivy

There is a newer version: 1.2025.0
Show newest version
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package net.sourceforge.plantuml.dot;

public class UnparsableGraphvizException extends RuntimeException {

	private final String graphvizVersion;
	private final String svg;
	private final String diagramSource;

	public UnparsableGraphvizException(Exception cause, String graphvizVersion, String svg, String diagramSource) {
		super(cause);
		this.graphvizVersion = graphvizVersion;
		this.svg = svg;
		this.diagramSource = diagramSource;
	}

	public String getGraphvizVersion() {
		return graphvizVersion;
	}

	public final String getDebugData() {
		return "SVG=" + svg + "\r\nDIAGRAM=" + diagramSource;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy