hupa/src/main/java/org/apache/hupa/client/Hupa.java [61:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String stackTraceToString(Throwable throwable) {
        String ret = "";
        while (throwable != null) {
            if (ret != "")
                ret += "\nCaused by: ";
            ret += throwable.toString();
            for (StackTraceElement sTE : throwable.getStackTrace())
                ret += "\n  at " + sTE;
            throwable = throwable.getCause();
        }
        return ret;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



client/src/main/java/org/apache/hupa/client/Hupa.java [61:72]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String stackTraceToString(Throwable throwable) {
        String ret = "";
        while (throwable != null) {
            if (ret != "")
                ret += "\nCaused by: ";
            ret += throwable.toString();
            for (StackTraceElement sTE : throwable.getStackTrace())
                ret += "\n  at " + sTE;
            throwable = throwable.getCause();
        }
        return ret;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



