DeviceUnresponsiveException

public class DeviceUnresponsiveException
extends DeviceNotAvailableException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ com.android.tradefed.error.HarnessException
         ↳ com.android.tradefed.device.DeviceNotAvailableException
           ↳ com.android.tradefed.device.DeviceUnresponsiveException


Es una especialización de DeviceNotAvailableException que indica que el dispositivo está visible para adb, pero no responde (es decir, se agota el tiempo de espera de los comandos, no se inicia, etcétera).

Resumen

Constructores públicos

DeviceUnresponsiveException(String msg, String serial)

Crea un DeviceUnresponsiveException.

DeviceUnresponsiveException(String msg, String serial, ErrorIdentifier errorId)

Crea un DeviceUnresponsiveException.

DeviceUnresponsiveException(String msg, Throwable cause, String serial)

Crea un DeviceUnresponsiveException.

DeviceUnresponsiveException(String msg, Throwable cause, String serial, ErrorIdentifier errorId)

Crea un DeviceUnresponsiveException.

Constructores públicos

DeviceUnresponsiveException

public DeviceUnresponsiveException (String msg, 
                String serial)

Crea un DeviceUnresponsiveException.

Parámetros
msg String: Es un mensaje descriptivo.

serial String: Es el número de serie del dispositivo en cuestión.

DeviceUnresponsiveException

public DeviceUnresponsiveException (String msg, 
                String serial, 
                ErrorIdentifier errorId)

Crea un DeviceUnresponsiveException.

Parámetros
msg String: Es un mensaje descriptivo.

serial String: Es el número de serie del dispositivo en cuestión.

errorId ErrorIdentifier: Es el identificador del error.

DeviceUnresponsiveException

public DeviceUnresponsiveException (String msg, 
                Throwable cause, 
                String serial)

Crea un DeviceUnresponsiveException.

Parámetros
msg String: Es un mensaje descriptivo.

cause Throwable: Es el Throwable raíz que provocó que el dispositivo no esté disponible.

serial String: Es el número de serie del dispositivo en cuestión.

DeviceUnresponsiveException

public DeviceUnresponsiveException (String msg, 
                Throwable cause, 
                String serial, 
                ErrorIdentifier errorId)

Crea un DeviceUnresponsiveException.

Parámetros
msg String: Es un mensaje descriptivo.

cause Throwable: Es el Throwable raíz que provocó que el dispositivo no esté disponible.

serial String: Es el número de serie del dispositivo en cuestión.

errorId ErrorIdentifier: Es el identificador del error.