ExceptionOkrSystemAdminCheck.java 431 字节
Newer Older
R
roo00 已提交
1 2 3 4 5 6 7 8 9 10 11 12
package com.x.okr.assemble.control.jaxrs.okrtask.exception;

import com.x.base.core.project.exception.PromptException;

public class ExceptionOkrSystemAdminCheck extends PromptException {

	private static final long serialVersionUID = 1859164370743532895L;

	public ExceptionOkrSystemAdminCheck( Throwable e, String userName ) {
		super("系统在判断用户是否是OKR系统管理员时发生异常.Name:" + userName, e );
	}
}