com.processpuzzle.fitnesse.print.plugin.FitToPdfException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fit-print-plugin Show documentation
Show all versions of fit-print-plugin Show documentation
FitNesse Plugin to print wiki content into PDF.
The newest version!
package com.processpuzzle.fitnesse.print.plugin;
public class FitToPdfException extends Exception {
private static final long serialVersionUID = 1L;
public FitToPdfException( String message ) {
super( message );
}
public FitToPdfException( String message, Exception e ) {
super( message, e );
}
}