package com.jiuqi.lbsinterface.exception; /** * webservice没有实现类 * @author liuhongbin */ public class WSImplNotFoundException extends NiGoException { private static final long serialVersionUID = -3489909741457234235L; /** * 构造函数 * @param wsInterfaceName webservice的接口 * @param wsImplClassName 接口对应的实现类名 */ public WSImplNotFoundException(String wsInterfaceName, String wsImplClassName) { super("没有找到webservice接口[" + wsInterfaceName + "]对应的实现类[" + wsImplClassName + "]"); } public WSImplNotFoundException(String msg, Throwable e) { super(msg, e); } }