package com.jiuqi.lbsinterface.exception; /** * 指针超过最大位置 * @author modi * */ public class IndexOutException extends RuntimeException { private static final long serialVersionUID = -1759627568161756426L; public IndexOutException(){ } public IndexOutException(String msg, Throwable e){ super(msg, e); } }