Searched refs:originalException (Results 1 – 3 of 3) sorted by relevance
6 abstract class ExponentException(private val originalException: Exception?) : Exception() { constant in host.exp.exponent.exceptions.ExponentException9 fun originalException(): Exception? { in toString() method in host.exp.exponent.exceptions.ExponentException10 return originalException in toString()14 return originalException?.toString() ?: toString() in originalExceptionMessage()
29 constructor(originalException: Exception?, manifestUrl: String) : super(originalException) { in <lambda>()34 constructor(originalException: Exception?, manifestUrl: String, errorJSON: JSONObject?) : super( in <lambda>()35 originalException in <lambda>()
39 if (exception.originalException() != null) { in exceptionToErrorMessage()40 val userErrorMessage = getUserErrorMessage(exception.originalException(), context) in exceptionToErrorMessage()