fork(1) download
  1. class Main
  2. {
  3. public static void main (String[] args) throws Exception
  4. {
  5. try{
  6. throw new Exception();
  7. } catch (Expection e){ }
  8. }
  9. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:7: error: cannot find symbol
        } catch (Expection e){ }
                 ^
  symbol:   class Expection
  location: class Main
1 error
stdout
Standard output is empty