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

com.mofum.scope.common.error.DefaultThrowableHandler Maven / Gradle / Ivy

There is a newer version: 2.0.0.RELEASE
Show newest version
package com.mofum.scope.common.error;

/**
 * 默认的异常的处理器
 *
 * @author [email protected]
 * @since 2019-03-27
 **/
public class DefaultThrowableHandler implements ThrowableHandler {

    @Override
    public void handler(Throwable e) throws Throwable {
        if (e != null) {
            throw e;
        }

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy