public class TestTryCatchBlock {
	
	public m() {
		
		try {
			return new TestTryCatchBlock();
		}
		catch (e) {
			return null;
		}
		
	}

}