abstract class FilterAtriumErrorAdjuster : AtriumErrorAdjuster
(source)
FilterAtriumErrorAdjuster() |
fun adjust(throwable: Throwable): Unit
Adjusts the given throwable - typically this involves filtering the stack trace
( |
|
open fun adjustOtherThanStacks(throwable: Throwable): Unit
Does nothing (no adjustments) - override in subclass if you want a different behaviour. |
abstract fun adjustStackTrace(stackTrace: Sequence<StackTraceElement>): Sequence<StackTraceElement>
Adjusts the given Throwable.stackTrace in some way or another. |