1
2
3
4
5
6
7
private static void cs (PrprAble f){
	if(f==null) return;
	try {
		f.prpr();
	} catch (PrprException e) {
	}
}