fork download
  1. import java.util.*;
  2. import java.lang.*;
  3.  
  4. class Main
  5. {
  6. public static void main (String[] args) throws java.lang.Exception
  7. {
  8. try{
  9. throw new Error("Test");
  10. } catch (Throwable $e){
  11. throw new RuntimeException($e);
  12. }
  13. }
  14. }
Runtime error #stdin #stdout 0.07s 380224KB
stdin
Standard input is empty
stdout
Standard output is empty