Here you can find the source of exceptionToString(Throwable exception)
public static String exceptionToString(Throwable exception)
//package com.java2s; /*/*from ww w . j a v a 2 s . c o m*/ * Copyright 2007-2013 VTT Biotechnology * This file is part of Guineu. * * Guineu is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License as published by the Free Software * Foundation; either version 2 of the License, or (at your option) any later * version. * * Guineu is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR * A PARTICULAR PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along with * Guineu; if not, write to the Free Software Foundation, Inc., 51 Franklin St, * Fifth Floor, Boston, MA 02110-1301 USA */ public class Main { /** * Converts given exception to String, including file name and line number * */ public static String exceptionToString(Throwable exception) { StringBuffer str = new StringBuffer(); str.append(exception.toString()); if (exception.getStackTrace().length > 0) { StackTraceElement location = exception.getStackTrace()[0]; str.append(" ("); str.append(location.getFileName()); str.append(":"); str.append(location.getLineNumber()); str.append(")"); } return str.toString(); } }