RunInterruptedException
public
class
RunInterruptedException
extends Object
java.lang.Object | |
↳ | com.android.tradefed.util.RunInterruptedException |
Thrown when a run operation is interrupted by an external request.
Summary
Public constructors | |
---|---|
RunInterruptedException()
Creates a |
|
RunInterruptedException(String msg)
Creates a |
|
RunInterruptedException(Throwable cause)
Creates a |
|
RunInterruptedException(String msg, Throwable cause)
Creates a |
Public constructors
RunInterruptedException
public RunInterruptedException (String msg)
Creates a RunInterruptedException
.
Parameters | |
---|---|
msg |
String : a descriptive message.
|
RunInterruptedException
public RunInterruptedException (Throwable cause)
Creates a RunInterruptedException
.
Parameters | |
---|---|
cause |
Throwable : the root Throwable that caused the device to become unavailable.
|
RunInterruptedException
public RunInterruptedException (String msg, Throwable cause)
Creates a RunInterruptedException
.
Parameters | |
---|---|
msg |
String : a descriptive message. |
cause |
Throwable : the root Throwable that caused the device to become unavailable.
|