package cn.jeesoft.core.exception; /** * 不支持此操作异常 * * @author huangfei * */ public class NotThisMethod extends Exception { private static final long serialVersionUID = 1L; /** * @param string */ public NotThisMethod(String arg0) { super(arg0); } }