Title: System Level Error in TOC Framework
Description: This the type for wrap system level error.
Copyright: Copyright (c) 2010 Thousand Origami Cranes Corp.
Create Time: 19 Feb 2010 17:45:01
56789101112131415
public class ExceptionHelper { public static GenericException parse(Exception e) { try { e.printStackTrace(); return new SysException(null,null); } catch(Exception ex) { ex.printStackTrace(); return new SysException(null,null); } }