Java Throwable to String formatException(Throwable t)

Here you can find the source of formatException(Throwable t)

Description

Formats the given Throwable 's stack trace to a string

License

Apache License

Parameter

Parameter Description
t the throwable for which the stack trace is to be formatted to string

Return

a string representation of the given 's stack trace

Declaration

public static String formatException(Throwable t) 

Method Source Code


//package com.java2s;
/*/* w w w  .j a  v  a 2  s  . co m*/
 * Copyright 2015 Robert von Burg <eitch@eitchnet.ch>
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.PrintWriter;
import java.io.StringWriter;

public class Main {
    /**
     * Formats the given {@link Throwable}'s stack trace to a string
     * 
     * @param t
     *            the throwable for which the stack trace is to be formatted to string
     * 
     * @return a string representation of the given {@link Throwable}'s stack trace
     */
    public static String formatException(Throwable t) {
        StringWriter stringWriter = new StringWriter();
        PrintWriter writer = new PrintWriter(stringWriter);
        t.printStackTrace(writer);
        return stringWriter.toString();
    }
}

Related

  1. formatException(Throwable e)
  2. formatException(Throwable t)
  3. formatExceptionForDisplay(Exception e)
  4. formatThrowableForHtml(Throwable t)
  5. formatThrown(final Throwable thrown)
  6. getDetails(Throwable t)