FairEmail/app/src/main/java/com/bugsnag/android/ErrorType.kt

23 lines
391 B
Kotlin
Raw Normal View History

2021-05-15 20:03:05 +00:00
package com.bugsnag.android
/**
* Represents the type of error captured
*/
enum class ErrorType(internal val desc: String) {
/**
* An error captured from Android's JVM layer
*/
ANDROID("android"),
/**
* An error captured from JavaScript
*/
REACTNATIVEJS("reactnativejs"),
/**
* An error captured from Android's C layer
*/
C("c")
}