package com.jiuqi.lbsinterface.exception; /** * saas ϵͳ�쳣���� * @author liuhongbin */ public class NiGoException extends Exception { private static final long serialVersionUID = 3106811078097037244L; public NiGoException() { super(); } public NiGoException(String msg) { super(msg); } public NiGoException(Throwable e) { super(e); } public NiGoException(String msg, Throwable e) { super(msg, e); } }