Skip to content

Commit

Permalink
chore: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lbressler13 committed Jan 23, 2024
1 parent 1ecc436 commit 4578145
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ package xyz.lbres.exactnumbers.exceptions
/**
* ArithmeticException for overflows when casting numbers
*/
class CastingOverflowException private constructor(baseType: String, targetType: String, valueString: String, overflowValue: Any?, noArgs: Boolean) : ArithmeticException() {
class CastingOverflowException private constructor(
baseType: String,
targetType: String,
valueString: String,
overflowValue: Any?,
noArgs: Boolean
) : ArithmeticException() {
override val message: String?
val overflowValue: Any?

Expand Down

0 comments on commit 4578145

Please sign in to comment.