commonMain.dev.mokkery.MokkeryRuntimeException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mokkery-core-jvm Show documentation
Show all versions of mokkery-core-jvm Show documentation
Mokkery is a mocking library for Kotlin Multiplatform, easy to use, boilerplate-free and compiler plugin driven.
The newest version!
package dev.mokkery
/**
* Base class for all Mokkery runtime exceptions.
*/
public open class MokkeryRuntimeException(
message: String? = null,
cause: Throwable? = null
) : RuntimeException(message, cause)