if (graphics == null) {
throw new GraphicException("Unable to convert to PDF: "
+ this.svg.getUrl().toExternalForm());
}
graphics.dispose();
if (graphics.ioErrorFound()) {
throw new GraphicException("I/O error(s) while converting to PDF: "
+ this.svg.getUrl().toExternalForm());
}
}