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

commonMain.com.dokar.quickjs.QuickJsException.kt Maven / Gradle / Ivy

The newest version!
package com.dokar.quickjs

/**
 * It can be thrown when initializing [QuickJs] or calling its functions.
 */
class QuickJsException(
    override val message: String?,
) : Exception()

@PublishedApi
internal fun qjsError(message: String): Nothing = throw QuickJsException(message)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy