标签:style version throwable use height manage ima ESS nbsp
ylbtech-Java-java-com-util-common-service:ServiceException.java |
1.返回顶部 |
package com.shineyoo.manager.util.common.service; /** * Service层公用的Exception, 从由Spring管理事务的函数中抛出时会触发事务回滚. * @author */ public class ServiceException extends RuntimeException { private static final long serialVersionUID = 1L; public ServiceException() { super(); } public ServiceException(String message) { super(message); } public ServiceException(Throwable cause) { super(cause); } public ServiceException(String message, Throwable cause) { super(message, cause); } }
2.返回顶部 |
3.返回顶部 |
4.返回顶部 |
5.返回顶部 |
6.返回顶部 |
作者:ylbtech 出处:http://ylbtech.cnblogs.com/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 |
Java-java-com-util-common-service:ServiceException.java
标签:style version throwable use height manage ima ESS nbsp
原文地址:https://www.cnblogs.com/storebook/p/9605488.html