-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Kopilov
committed
Nov 22, 2022
1 parent
b427eae
commit 89c30e7
Showing
4 changed files
with
57 additions
and
17 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/exceptions/CellConversionException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.jetbrains.kotlinx.dataframe.exceptions | ||
|
||
import kotlin.reflect.KType | ||
|
||
public class CellConversionException( | ||
value: Any?, | ||
from: KType, | ||
to: KType, | ||
public val column: String, | ||
public val row: Int?, | ||
override val cause: Throwable? | ||
) : TypeConversionException(value, from, to) { | ||
override val message: String | ||
get() = "${super.message} in column $column, row $row" | ||
} |
4 changes: 2 additions & 2 deletions
4
core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/exceptions/TypeConversionException.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters