1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-27 00:38:11 -07:00
kobalt/modules/kobalt-plugin-api/src/main/kotlin/com/beust/kobalt/KobaltException.kt
2015-12-18 02:26:49 +04:00

7 lines
212 B
Kotlin

package com.beust.kobalt
class KobaltException(s: String? = null, ex: Throwable? = null, val docUrl: String? = null)
: RuntimeException(s, ex) {
constructor(ex: Throwable?) : this(null, ex, null)
}