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

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

Introduction

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

Usage

From source file com.wcs.base.util.ExceptionUtils.java

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

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

From source file org.mule.util.ExceptionUtils.java

/**
 * Mule exception utilities.
 */
public class ExceptionUtils extends org.apache.commons.lang.exception.ExceptionUtils {

    /**

From source file com.jaeksoft.searchlib.util.ExceptionUtils.java

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

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