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

kotlinx.kover.gradle.plugin.commons.Exceptions.kt Maven / Gradle / Ivy

There is a newer version: 0.9.0-RC
Show newest version
/*
 * Copyright 2017-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

package kotlinx.kover.gradle.plugin.commons

import org.gradle.api.GradleException

internal class KoverCriticalException(message: String, cause: Throwable? = null): GradleException("$message\nPlease create a bug in Kover Gradle Plugin bugtracker https://github.com/Kotlin/kotlinx-kover/issues", cause)

internal class KoverIllegalConfigException(message: String): GradleException(message)

internal class KoverVerificationException(violations: String): GradleException(violations)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy