//代码生成时,文件路径: E:/quickbundle-securityweb/src/main/java/orgauth/rmpartytyperelationrule/util/exception/RmPartyTypeRelationRuleException.java //代码生成时,系统时间: 2010-11-29 10:08:24 //代码生成时,操作系统用户: Administrator /* * 系统名称:单表模板 --> quickbundle-securityweb * * 文件名称: org.quickbundle.orgauth.rmpartytyperelationrule.util.exception --> RmPartyTypeRelationRuleException.java * * 功能描述: * * 版本历史: 2010-11-29 10:08:24 创建1.0.0版 (白小勇) * */ package org.quickbundle.orgauth.rmpartytyperelationrule.util; import org.quickbundle.base.exception.RmRuntimeException; /** * 功能、用途、现存BUG: * * @author 白小勇 * @version 1.0.0 * @see 需要参见的其它类 * @since 1.0.0 */ public class RmPartyTypeRelationRuleException extends RmRuntimeException { /** * 构造函数 */ public RmPartyTypeRelationRuleException() { super(); } /** * 构造函数: * @param msg */ public RmPartyTypeRelationRuleException(String msg) { super(msg); } /** * 构造函数: * @param t */ public RmPartyTypeRelationRuleException(Throwable t) { super(t); } /** * 构造函数: * @param msg * @param t */ public RmPartyTypeRelationRuleException(String msg, Throwable t) { super(msg, t); } /** * 构造函数: * @param msg * @param t * @param returnObj */ public RmPartyTypeRelationRuleException(String msg, Throwable t, Object returnObj) { super(msg, t, returnObj); } }