MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

/*
 * Output:
 * 
 *  
 */

public class MainClass {
    public static void main(String args[]) {
        try {
            throw new RuntimeException("demo");
        } catch (Exception e) {
        }
    }
}