mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-03 10:49:58 +00:00
14 lines
424 B
Java
14 lines
424 B
Java
public class pr26990
|
|
{
|
|
public static void main (String args[]) throws Exception
|
|
{
|
|
System.setSecurityManager(new SecurityManager()
|
|
{
|
|
public void checkExit(int status)
|
|
{
|
|
throw new SecurityException("This is a bug");
|
|
}
|
|
});
|
|
}
|
|
}
|