Package ch.qos.logback.classic.spi
Class ThrowableProxyUtil
- java.lang.Object
-
- ch.qos.logback.classic.spi.ThrowableProxyUtil
-
@Deprecated(since="2022-01-27") public class ThrowableProxyUtil extends java.lang.Object
Deprecated.This internal logback API is not supported by AEM as a Cloud Service.Convert a throwable into an array of ThrowableDataPoint objects.
-
-
Field Summary
Fields Modifier and Type Field Description static int
REGULAR_EXCEPTION_INDENT
Deprecated.static int
SUPPRESSED_EXCEPTION_INDENT
Deprecated.
-
Constructor Summary
Constructors Constructor Description ThrowableProxyUtil()
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static java.lang.String
asString(IThrowableProxy tp)
Deprecated.static void
build(ThrowableProxy nestedTP, java.lang.Throwable nestedThrowable, ThrowableProxy parentTP)
Deprecated.static void
indent(java.lang.StringBuilder buf, int indent)
Deprecated.static void
subjoinFirstLine(java.lang.StringBuilder buf, IThrowableProxy tp)
Deprecated.static void
subjoinFirstLineRootCauseFirst(java.lang.StringBuilder buf, IThrowableProxy tp)
Deprecated.static void
subjoinPackagingData(java.lang.StringBuilder builder, StackTraceElementProxy step)
Deprecated.static void
subjoinSTEP(java.lang.StringBuilder sb, StackTraceElementProxy step)
Deprecated.static void
subjoinSTEPArray(java.lang.StringBuilder sb, int indentLevel, IThrowableProxy tp)
Deprecated.static void
subjoinSTEPArray(java.lang.StringBuilder sb, IThrowableProxy tp)
Deprecated.Use subjoinSTEPArray(StringBuilder sb, int indentLevel, IThrowableProxy tp) instead.
-
-
-
Field Detail
-
REGULAR_EXCEPTION_INDENT
public static final int REGULAR_EXCEPTION_INDENT
Deprecated.- See Also:
- Constant Field Values
-
SUPPRESSED_EXCEPTION_INDENT
public static final int SUPPRESSED_EXCEPTION_INDENT
Deprecated.- See Also:
- Constant Field Values
-
-
Method Detail
-
build
public static void build(ThrowableProxy nestedTP, java.lang.Throwable nestedThrowable, ThrowableProxy parentTP)
Deprecated.
-
asString
public static java.lang.String asString(IThrowableProxy tp)
Deprecated.
-
indent
public static void indent(java.lang.StringBuilder buf, int indent)
Deprecated.
-
subjoinPackagingData
public static void subjoinPackagingData(java.lang.StringBuilder builder, StackTraceElementProxy step)
Deprecated.
-
subjoinSTEP
public static void subjoinSTEP(java.lang.StringBuilder sb, StackTraceElementProxy step)
Deprecated.
-
subjoinSTEPArray
public static void subjoinSTEPArray(java.lang.StringBuilder sb, IThrowableProxy tp)
Deprecated.Use subjoinSTEPArray(StringBuilder sb, int indentLevel, IThrowableProxy tp) instead.- Parameters:
sb
- The StringBuilder the STEPs are appended to.tp
- the IThrowableProxy containing the STEPs.
-
subjoinSTEPArray
public static void subjoinSTEPArray(java.lang.StringBuilder sb, int indentLevel, IThrowableProxy tp)
Deprecated.- Parameters:
sb
- The StringBuilder the STEPs are appended to.indentLevel
- indentation level used for the STEPs, usually REGULAR_EXCEPTION_INDENT.tp
- the IThrowableProxy containing the STEPs.
-
subjoinFirstLine
public static void subjoinFirstLine(java.lang.StringBuilder buf, IThrowableProxy tp)
Deprecated.
-
subjoinFirstLineRootCauseFirst
public static void subjoinFirstLineRootCauseFirst(java.lang.StringBuilder buf, IThrowableProxy tp)
Deprecated.
-
-