All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.johnsonlee.playground.util.ResultExtension.kt Maven / Gradle / Ivy

The newest version!
@file:JvmName("ResultUtils")
package io.johnsonlee.playground.util

import com.android.ide.common.rendering.api.Result

fun Result.check(): Result = apply {
    if (!isSuccess) {
        throw exception ?: Exception(errorMessage ?: status.toString())
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy