8 lines
165 B
Plaintext
8 lines
165 B
Plaintext
|
import java.lang.String;
|
||
|
import java.lang.RuntimeException;
|
||
|
|
||
|
public class Exceptions {
|
||
|
public m() {
|
||
|
throw new RuntimeException("Some Exception");
|
||
|
}
|
||
|
}
|