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

org.pantsbuild.tools.junit.impl.experimental.ConcurrentTestRunnerException Maven / Gradle / Ivy

Go to download

A command line tool for running junit tests that provides functionality above and beyond that provided by org.junit.runner.JUnitCore.

There is a newer version: 1.0.30
Show newest version
// Copyright 2016 Pants project contributors (see CONTRIBUTORS.md).
// Licensed under the Apache License, Version 2.0 (see LICENSE).

package org.pantsbuild.tools.junit.impl.experimental;

public class ConcurrentTestRunnerException extends RuntimeException {
  public ConcurrentTestRunnerException(String message) {
    super(message);
  }
  public ConcurrentTestRunnerException(String message, Throwable t) {
    super(message, t);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy