leisure.springboot.web.exception.LeisureExceptionhandler Maven / Gradle / Ivy
The newest version!
package leisure.springboot.web.exception;
import leisure.core.common.Result;
public interface LeisureExceptionhandler {
Result ProdException(Result rb, Exception ex);
Result TestException(Result rb, Exception ex);
Result CustException(Result rb, Exception ex);
}