sms-translate/app/src/main/kotlin/com/simplemobiletools/smsmessenger/messaging/SmsException.kt

9 lines
313 B
Kotlin

package com.simplemobiletools.smsmessenger.messaging
class SmsException(val errorCode: Int, val exception: Exception? = null) : Exception() {
companion object {
const val EMPTY_DESTINATION_ADDRESS = 0
const val ERROR_PERSISTING_MESSAGE = 1
const val ERROR_SENDING_MESSAGE = 2
}
}