1 2 3 4 5 6 7
package com.stileeducation.markr.exception; public class TestNotFoundException extends RuntimeException { public TestNotFoundException(String message) { super(message); } }