All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.lazyegg.core.exception.ResponseHandlerI Maven / Gradle / Ivy

The newest version!
package io.lazyegg.core.exception;

import com.alibaba.cola.exception.BaseException;
import org.springframework.http.ResponseEntity;

public interface ResponseHandlerI {
    Object handle(Class returnType, String errCode, String errMsg);

    ResponseEntity handle(Class returnType, BaseException e);
}