123456789101112131415161718 |
- package com.future.common.exception.user;
- import com.future.common.exception.BaseException;
- /**
- * 用户信息异常类
- *
- * @author future
- */
- public class UserException extends BaseException
- {
- private static final long serialVersionUID = 1L;
- public UserException(String code, Object[] args)
- {
- super("user", code, args, null);
- }
- }
|