Ylbtech-java-java-com-util-common-service:serviceexception.java |
1.
PackageCom.shineyoo.manager.util.common.service;/*** Service Layer Common exception, which triggers a transaction rollback when thrown from a function in a spring managed transaction. *@author */ Public classServiceexceptionextendsRuntimeException {Private Static Final LongSerialversionuid = 1L; Publicserviceexception () {Super(); } Publicserviceexception (String message) {Super(message); } Publicserviceexception (Throwable cause) {Super(cause); } Publicserviceexception (String message, throwable cause) {Super(message, cause); }}
2.
|
Ylbtech Source: http://ylbtech.cnblogs.com/ This article is copyright to the author and the blog Park, Welcome to reprint, but without the consent of the author must retain this paragraph, and in the article page obvious location to the original link, otherwise reserves the right to pursue legal responsibility. |
Java-java-com-util-common-service:serviceexception.java