Interesting, what ideas people have to avoid the clutter of Java-code:
public Type someMethod() {try{
Some x = getA().getB().getC();
if (x.check())
return x.getR().createT();
else
return new Type(x);
}catch(Exception e){ return null; }}
Advertisement