6 lines
96 B
Java
6 lines
96 B
Java
package junit.framework;
|
|
|
|
public interface Protectable {
|
|
void protect() throws Throwable;
|
|
}
|