implement decode exception

This commit is contained in:
2026-01-18 21:48:05 +01:00
parent a347bd617c
commit 24c667bc9c
4 changed files with 25 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
package com.infendro.encoding.exception
abstract class DecodeException : Exception() {
abstract override val message: String
}