mirror of
https://github.com/AdrianKuta/Tree-Data-Structure.git
synced 2025-09-16 15:34:22 +02:00
6 lines
232 B
Kotlin
6 lines
232 B
Kotlin
package com.github.adriankuta.datastructure.tree.exceptions
|
|
|
|
import kotlin.jvm.JvmOverloads
|
|
|
|
class TreeNodeException @JvmOverloads constructor(message: String? = null, cause: Throwable? = null) :
|
|
RuntimeException(message, cause) |