interface RemoveAtriumFromAtriumError : AtriumErrorAdjuster
(source)
Responsible to remove the stacktrace of Atrium from an AtriumError.
It is a marker interface so that one can ComponentFactoryContainer.buildOrNull an implementation of a AtriumErrorAdjuster with the desired behaviour.
abstract fun adjustStackTrace(stackTrace: Sequence<StackTraceElement>): Sequence<StackTraceElement>
Adjusts the given Throwable.stackTrace in some way or another. |
expect class RemoveAtriumFromAtriumErrorImpl : RemoveAtriumFromAtriumError |