DeviceRuntimeException
public
class
DeviceRuntimeException
extends HarnessRuntimeException
java.lang.Object | ||
↳ | com.android.tradefed.error.HarnessRuntimeException | |
↳ | com.android.tradefed.device.DeviceRuntimeException |
デバイス アクションが期待どおりの結果にならなかった場合にスローされます。
例: 「pm list users」ユーザーのリストを返すことが期待されていますが、返しません。 エラーのため、DeviceRuntimeException としてスローする必要があります。
概要
パブリック コンストラクタ | |
---|---|
DeviceRuntimeException(String msg, ErrorIdentifier errorId)
|
|
DeviceRuntimeException(String msg, Throwable t, ErrorIdentifier errorId)
|
パブリック コンストラクタ
DeviceRuntimeException
public DeviceRuntimeException (String msg, ErrorIdentifier errorId)
DeviceRuntimeException
を作成します。
パラメータ | |
---|---|
msg |
String : エラーの説明的なエラー メッセージ。 |
errorId |
ErrorIdentifier : 例外を分類する ErrorIdentifier 。 |
DeviceRuntimeException
public DeviceRuntimeException (String msg, Throwable t, ErrorIdentifier errorId)
DeviceRuntimeException
を作成します。
パラメータ | |
---|---|
msg |
String : エラーの説明的なエラー メッセージ |
t |
Throwable : DeviceRuntimeException でラップする必要がある Throwable 。 |
errorId |
ErrorIdentifier : 例外を分類する ErrorIdentifier 。 |