Java Exception to String exceptionToString(Throwable exception)

Here you can find the source of exceptionToString(Throwable exception)

Description

Converts given exception to String, including file name and line number

License

Open Source License

Declaration

public static String exceptionToString(Throwable exception) 

Method Source Code

//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();

    }
}

Related

  1. exceptionToString(final Throwable ex)
  2. exceptionToString(final Throwable throwable)
  3. exceptionToString(Throwable e)
  4. exceptionToString(Throwable e)
  5. exceptionToString(Throwable ex)
  6. exceptionTypeAndMsg(Exception e)
  7. exceptionWithCause(T exception, Throwable cause)
  8. getErrorMessage(Exception ex)
  9. getErrorMessage(Exception ex)