HomeSort by relevance Sort by last modified time
    Searched defs:TargetSetupError (Results 1 - 4 of 4) sorted by null

  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
TargetSetupError.java 23 public class TargetSetupError extends Exception {
30 * Constructs a new (@link TargetSetupError} with a meaningful error message.
33 * @deprecated use {@link #TargetSetupError(String, DeviceDescriptor)} instead.
36 public TargetSetupError(String reason) {
41 * Constructs a new (@link TargetSetupError} with a meaningful error message.
46 public TargetSetupError(String reason, DeviceDescriptor descriptor) {
51 * Constructs a new (@link TargetSetupError} with a meaningful error message, and a
55 * @param cause a {@link Throwable} capturing the original cause of the TargetSetupError
56 * @deprecated use {@link #TargetSetupError(String, Throwable, DeviceDescriptor)} instead.
59 public TargetSetupError(String reason, Throwable cause)
    [all...]
PushFilePreparer.java 83 private void fail(String message, ITestDevice device) throws TargetSetupError {
85 throw new TargetSetupError(message, device.getDeviceDescriptor());
129 public void setUp(ITestDevice device, IBuildInfo buildInfo) throws TargetSetupError, BuildError,
  /test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
PropertyCheck.java 24 import com.android.tradefed.targetprep.TargetSetupError;
45 public void run(ITestDevice device, IBuildInfo buildInfo) throws TargetSetupError,
60 throw new TargetSetupError(msg, device.getDeviceDescriptor());
SettingsPreparer.java 25 import com.android.tradefed.targetprep.TargetSetupError;
63 public void run(ITestDevice device, IBuildInfo buildInfo) throws TargetSetupError,
67 throw new TargetSetupError("The \"device-setting\" option must be defined for the " +
72 throw new TargetSetupError("The \"setting-type\" option must be defined for the " +
78 throw new TargetSetupError("At least one of the options \"set-value\" and " +
92 throw new TargetSetupError(String.format(
122 throw new TargetSetupError(mFailureMessage, device.getDeviceDescriptor());

Completed in 84 milliseconds