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