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

kotlinx.atomicfu.transformer.Abort.kt Maven / Gradle / Ivy

/*
 * Copyright 2017-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package kotlinx.atomicfu.transformer

import org.objectweb.asm.tree.AbstractInsnNode

class AbortTransform(
    message: String,
    val i: AbstractInsnNode? = null
) : Exception(message)

fun abort(message: String, i: AbstractInsnNode? = null): Nothing = throw AbortTransform(message, i)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy