View NetworkError.kt
import com.google.gson.Gson | |
import com.swishhoop.util.TLog | |
import retrofit2.HttpException | |
import java.io.IOException | |
import java.net.ConnectException | |
import java.net.SocketTimeoutException | |
import java.net.UnknownHostException | |
import kotlin.reflect.KClass | |
/** |
View Bitmask.kt
class Bitmask( | |
mask: Int | |
) { | |
private var bitmask = mask | |
val mask: Int | |
get() = bitmask | |
constructor() : this(0) |