Home
last modified time | relevance | path

Searched refs:originalException (Results 1 – 3 of 3) sorted by relevance

/expo/android/expoview/src/main/java/host/exp/exponent/exceptions/
H A DExponentException.kt6 abstract class ExponentException(private val originalException: Exception?) : Exception() { constant in host.exp.exponent.exceptions.ExponentException
9 fun originalException(): Exception? { in toString() method in host.exp.exponent.exceptions.ExponentException
10 return originalException in toString()
14 return originalException?.toString() ?: toString() in originalExceptionMessage()
H A DManifestException.kt29 constructor(originalException: Exception?, manifestUrl: String) : super(originalException) { in <lambda>()
34 constructor(originalException: Exception?, manifestUrl: String, errorJSON: JSONObject?) : super( in <lambda>()
35 originalException in <lambda>()
H A DExceptionUtils.kt39 if (exception.originalException() != null) { in exceptionToErrorMessage()
40 val userErrorMessage = getUserErrorMessage(exception.originalException(), context) in exceptionToErrorMessage()