| 123456789101112131415161718 |
- package org.leanwo.management.exception;
- /**
- * Bean未注入异常
- * @author YangZhiJie
- * @version 20171213 1.0 *
- */
- public class BeanNotInjectException extends RuntimeException {
- public BeanNotInjectException() {
- super();
- }
- public BeanNotInjectException(String message) {
- super(message);
- }
-
- }
|