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

hudson.plugins.PerfPublisher.PerfPublisherParseException Maven / Gradle / Ivy

Go to download

The PerfPublisher plug-in scans for xml tests reports defined in the administration panel and generates trend graphs, computes stats and underline regressions and modifications. The xml files must be generated by your own testing tool.

There is a newer version: 7.97
Show newest version
package hudson.plugins.PerfPublisher;

/**
 * Exception used to show PerfPublisher parsing has failed.
 *
 * @author Georges Bossert
 */
public class PerfPublisherParseException extends RuntimeException {
   public PerfPublisherParseException(String msg, Exception e) {
      super(msg, e);
   }

   public PerfPublisherParseException(String msg) {
      super(msg);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy