blob: f16a26496c76c8851bbc13725065d78d2aa67d4a (
plain)
1
2
3
4
5
6
7
|
/*
* Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
*/
package org.jetbrains.dokka
public open class DokkaException(message: String) : RuntimeException(message)
|