Create a java application (Hello world that throws division by zero exception)
package com.jsnapshot.test;
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World");
int a = 1;
int b = 0;
int c = a / b; //Throws exception
}
}
In Package Explorer right click on your java file, from the context menu select Run with JSnapshot As > Java Application
It will switch to Debug perspective (if it won't, switch to Debug perspective manually)