23 lines
397 B
Java
23 lines
397 B
Java
package com.tenwa.reckon.exception;
|
|
|
|
import com.tenwa.comm.exception.BusinessException;
|
|
|
|
|
|
|
|
/**
|
|
*
|
|
* @author SHIHONGFEI
|
|
* @version 1.0
|
|
* @copyright (C) TENWA 2011
|
|
* @date 2011-2-17
|
|
* @desc ( 自定义异常用于异常的管理)
|
|
*/
|
|
@SuppressWarnings("serial")
|
|
public class LeasingException extends BusinessException {
|
|
|
|
public LeasingException(String message) {
|
|
super("租金测算异常:"+message);
|
|
}
|
|
|
|
}
|