}
//actually, this is more likely to happen when raising an exception in jython
if (e instanceof PyException) {
PyException pE = (PyException) e;
if (pE.type instanceof PyJavaClass) {
PyJavaClass t = (PyJavaClass) pE.type;
if (t.__name__ != null && t.__name__.equals("org.python.pydev.jython.ExitScriptException")) {
return null;
}
} else if (pE.type instanceof PyClass) {
PyClass t = (PyClass) pE.type;