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

io.mockk.proxy.MockKAgentException.kt Maven / Gradle / Ivy

There is a newer version: 1.13.14
Show newest version
package io.mockk.proxy

class MockKAgentException : RuntimeException {
    constructor(message: String) : super(message) {}

    constructor(message: String, cause: Throwable) : super(message, cause) {}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy