blob: bc711648c940d456f93081a9455f589af22de320 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package org.jetbrains.dokka.base.deprecated
import org.jetbrains.dokka.InternalDokkaApi
// TODO all API that mentions this message or error can be removed in Dokka >= 2.1
internal const val ANALYSIS_API_DEPRECATION_MESSAGE =
"Dokka's Analysis API has been reworked. Please, see the following issue for details and migration options: " +
"https://github.com/Kotlin/dokka/issues/3099"
@InternalDokkaApi
class AnalysisApiDeprecatedError : Error(ANALYSIS_API_DEPRECATION_MESSAGE)
|