Deprecate the StackTraceWriter class.

This commit is contained in:
Christian P. MOMON 2016-06-09 03:52:14 +02:00
parent a16639500d
commit 169b2702ed

View file

@ -22,13 +22,16 @@ import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
/**
*
* @deprecated use <code>SLF4J.Logger.error("blabla", exception)</code> method.
*/
@Deprecated
public class StacktraceWriter
{
/**
*
* @deprecated use <code>SLF4J.Logger.error("blabla", exception)</code>
* method.
*/
@Deprecated
public static String toString(final Exception exception)
{
String result;