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

com.github.yoojia.halo.utils.Exceptions Maven / Gradle / Ivy

There is a newer version: 1.1.2
Show newest version
package com.github.yoojia.halo.utils;

/**
 * @author YOOJIA.CHEN ([email protected])
 */
public final class Exceptions {

    public static String message(Exception e){
        String errorText = e.getMessage();
        if (errorText == null) {
            errorText = e.getCause() != null ? e.getCause().getMessage() : null;
        }
        return errorText;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy