Example usage for org.apache.commons.lang3.exception ExceptionUtils subclass-usage

List of usage examples for org.apache.commons.lang3.exception ExceptionUtils subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.lang3.exception ExceptionUtils subclass-usage.

Usage

From source file com.mawujun.utils.ExceptionUtils.java

public class ExceptionUtils extends org.apache.commons.lang3.exception.ExceptionUtils {

    /**
     * CheckedException?UnCheckedException.
     */
    public static RuntimeException unchecked(Exception e) {

From source file de.micromata.genome.util.runtime.ExceptionUtils.java

/**
 * Extension to common lang exception utils.
 *
 * @author Roger Rene Kommer (r.kommer@micromata.de)
 */
public class ExceptionUtils extends org.apache.commons.lang3.exception.ExceptionUtils {

From source file org.craftercms.core.util.ExceptionUtils.java

/**
 * Utility methods for exceptions.
 *
 * @author Alfonso Vsquez
 */
public class ExceptionUtils extends org.apache.commons.lang3.exception.ExceptionUtils {

From source file com.qwazr.utils.ExceptionUtils.java

public class ExceptionUtils extends org.apache.commons.lang3.exception.ExceptionUtils {

    public final static String getLocation(StackTraceElement[] stackTrace, String prefix) {
        for (StackTraceElement element : stackTrace)
            if (element.getClassName().startsWith(prefix))
                return element.toString();

From source file fr.landel.utils.commons.exception.ExceptionUtils.java

/**
 * Utility class to manage exception
 *
 * @since Apr 25, 2017
 * @author Gilles
 *

From source file com.thruzero.common.core.utils.ExceptionUtilsExt.java

/**
 * Extensions to the apache {@code ExceptionUtils} utility class.
 * <p>
 * NOTE: These Utils spew a lot more information than is probably needed, but JSF appears to be eating some of the
 * Exceptions I've thrown, or maybe I'm throwing the wrong type, so it eats it. Anyway, for now, it's easier to ignore
 * duplicated/extra spweage than it is to debug with none.