Home
last modified time | relevance | path

Searched refs:getCause (Results 1 – 10 of 10) sorted by relevance

/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/utils/
DIOExceptionWrapper.java39 public IOException getCause() { in getCause() method in IOExceptionWrapper
40 return (IOException) super.getCause(); in getCause()
/tools/tradefederation/core/src/com/android/tradefed/config/gcs/
DGCSConfigurationServer.java119 throw new ConfigurationException(e.getMessage(), e.getCause()); in currentHostname()
142 throw new ConfigurationException(e.getMessage(), e.getCause()); in downloadFile()
/tools/tradefederation/core/src/com/android/tradefed/util/
DDeviceConcurrentUtil.java63 Throwable t = e.getCause(); in joinFuture()
/tools/tradefederation/core/src/com/android/tradefed/config/
DConfigurationFactory.java347 throw new ConfigurationException(e.getMessage(), e.getCause()); in findConfigName()
826 if (e.getCause() != null && in loadAndPrintAllConfigs()
827 e.getCause() instanceof ClassNotFoundException) { in loadAndPrintAllConfigs()
828 ClassNotFoundException cnfe = (ClassNotFoundException) e.getCause(); in loadAndPrintAllConfigs()
DConfigurationXmlParser.java369 if (e.getCause() instanceof ConfigurationException) { in throwConfigException()
370 throw (ConfigurationException)e.getCause(); in throwConfigException()
/tools/tradefederation/core/src/com/android/tradefed/device/
DNativeDevice.java427 if (e.getCause() instanceof IOException) { in getProperty()
428 throw (IOException)e.getCause(); in getProperty()
429 } else if (e.getCause() instanceof TimeoutException) { in getProperty()
430 throw (TimeoutException)e.getCause(); in getProperty()
431 } else if (e.getCause() instanceof AdbCommandRejectedException) { in getProperty()
432 throw (AdbCommandRejectedException)e.getCause(); in getProperty()
433 } else if (e.getCause() instanceof ShellCommandUnresponsiveException) { in getProperty()
434 throw (ShellCommandUnresponsiveException)e.getCause(); in getProperty()
1860 if (e.getCause() != null) { in getExceptionMessage()
1862 msgBuilder.append(e.getCause().getClass().getSimpleName()); in getExceptionMessage()
[all …]
/tools/apksig/src/main/java/com/android/apksig/internal/zip/
DLocalFileRecord.java393 if (e.getCause() instanceof DataFormatException) { in outputUncompressedData()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
DITestSuiteTest.java910 assertTrue(expected.getCause() instanceof ConfigurationException); in testStatusChecker_doesNotExist()
947 assertTrue(expected.getCause() instanceof ConfigurationException); in testWhitelistRunner_notFound()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DInvocationExecution.java395 if (!(exception instanceof BuildError) && !(exception.getCause() instanceof BuildError)) { in resetBuildAndReschedule()
/tools/apksig/src/test/java/com/android/apksig/
DApkVerifierTest.java522 e = e.getCause(); in testV1SchemeSignatureCertNotReencoded()