diff options
author | sebastian.sellmair <sebastian.sellmair@jetbrains.com> | 2020-07-14 18:29:48 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-07-15 08:16:05 +0200 |
commit | 3fc8223f92ba140dbfa8e8371157b3bf782bda85 (patch) | |
tree | d45a9dd4c701f79cc8717b132e9fe0e2a2ddcd22 /core | |
parent | 2c9fe4c22e13f4d84f4085563715162fcdf2ec85 (diff) | |
download | dokka-3fc8223f92ba140dbfa8e8371157b3bf782bda85.tar.gz dokka-3fc8223f92ba140dbfa8e8371157b3bf782bda85.tar.bz2 dokka-3fc8223f92ba140dbfa8e8371157b3bf782bda85.zip |
Mark `DokkaBootstrap` with `Throws` annotation to avoid "UndeclaredThrowableException" when used with automagicProxy
Diffstat (limited to 'core')
-rw-r--r-- | core/src/main/kotlin/DokkaBootstrap.kt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/src/main/kotlin/DokkaBootstrap.kt b/core/src/main/kotlin/DokkaBootstrap.kt index ffaae03e..159172a5 100644 --- a/core/src/main/kotlin/DokkaBootstrap.kt +++ b/core/src/main/kotlin/DokkaBootstrap.kt @@ -1,8 +1,11 @@ package org.jetbrains.dokka import java.util.function.BiConsumer +import kotlin.jvm.Throws interface DokkaBootstrap { fun configure(serializedConfigurationJSON: String, logger: BiConsumer<String, String>) + + @Throws(Throwable::class) fun generate() } |