package com.cku.oa.sys.zalog;

/**
 * Created with IntelliJ IDEA.
 * User: lyy
 * Date: 2016/7/7
 * Time: 11:53
 */
@FunctionalInterface
public interface SysConsumer<T, X extends Throwable> {
    void accept(T instance) throws X;
}
