Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

public class Main {
    private static String appendThrowable(String origin, Throwable tr) {
        String trMsg = tr == null ? "" : String.format(": %s", tr.toString());
        return String.format("%s%s", origin, trMsg);
    }
}