com.malinskiy.marathon.exceptions.DeviceLostException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Cross-platform test runner
package com.malinskiy.marathon.exceptions
/**
* Indicates that the execution device is no longer available
*/
class DeviceLostException : RuntimeException {
constructor(cause: Throwable) : super(cause)
}