abstract class NoOpAtriumErrorAdjusterCommon : AtriumErrorAdjuster
(source)
An implementation of an AtriumErrorAdjuster which adjusts nothing and can be used by the platforms to provide the actual type of NoOpAtriumErrorAdjuster.
NoOpAtriumErrorAdjusterCommon()
An implementation of an AtriumErrorAdjuster which adjusts nothing and can be used by the platforms to provide the actual type of NoOpAtriumErrorAdjuster. |
open fun adjust(throwable: Throwable): Unit
Adjusts the given throwable - typically this involves filtering the stack trace
( |
|
open fun adjustOtherThanStacks(throwable: Throwable): Unit
Adjusts parts of the given throwable but not its stack trace. |
abstract fun adjustStackTrace(stackTrace: Sequence<StackTraceElement>): Sequence<StackTraceElement>
Adjusts the given Throwable.stackTrace in some way or another. |