mirror of
https://github.com/AdrianKuta/Tree-Data-Structure.git
synced 2025-10-16 10:12:31 +02:00
21: Added path
function to TreeNode
(#22)
Path refers to the sequence of nodes along the edges of a tree.
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package com.github.adriankuta.datastructure.tree.exceptions
|
||||
|
||||
import kotlin.jvm.JvmOverloads
|
||||
|
||||
class TreeNodeException @JvmOverloads constructor(message: String? = null, cause: Throwable? = null) :
|
||||
RuntimeException(message, cause)
|
Reference in New Issue
Block a user