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

org.uncommons.reportng.ReportNGException Maven / Gradle / Ivy

There is a newer version: 2.7.0
Show newest version
package org.uncommons.reportng;

/**
 * Unchecked exception thrown when an unrecoverable error occurs during report
 * generation.
 */
public class ReportNGException extends RuntimeException {

	private static final long serialVersionUID = 1L;

	public ReportNGException(String string) {
		super(string);
	}

	public ReportNGException(String string, Throwable throwable) {
		super(string, throwable);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy