Home | History | Annotate | Download | only in manipulation
      1 package org.junit.runner.manipulation;
      2 
      3 /**
      4  * Thrown when a filter removes all tests from a runner.
      5  */
      6 public class NoTestsRemainException extends Exception {
      7 	private static final long serialVersionUID = 1L;
      8 }
      9