mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-27 00:38:11 -07:00
7 lines
212 B
Kotlin
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)
|
|
}
|
|
|