ExceptionUpManualNotFound.java 356 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
package com.x.processplatform.assemble.surface.jaxrs.work;

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

class ExceptionUpManualNotFound extends PromptException {

	private static final long serialVersionUID = -7038279889683420366L;

	ExceptionUpManualNotFound(String id) {
		super("无法找到工作:{}, 的上级人工活动.", id);
	}

}