com.alibaba.cola.exception.ExceptionHandlerI Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cola-core Show documentation
Show all versions of cola-core Show documentation
Cola framework core components
package com.alibaba.cola.exception;
import com.alibaba.cola.dto.Command;
import com.alibaba.cola.dto.Response;
/**
* ExceptionHandlerI provide a backdoor that Application can override the default Exception handling
*
* @author Frank Zhang
* @date 2019-01-02 11:25 PM
*/
public interface ExceptionHandlerI {
public void handleException(Command cmd, Response response, Exception exception);
}