From b07d975aff6c88810ab1e18bd045a8bcf1522b3c Mon Sep 17 00:00:00 2001 From: Alexander Buntakov Date: Sat, 11 Mar 2023 19:10:35 +0300 Subject: [PATCH] [exceptions] add CommonFormException --- .../ru/touchin/common/exceptions/CommonFormException.kt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 common/src/main/kotlin/ru/touchin/common/exceptions/CommonFormException.kt diff --git a/common/src/main/kotlin/ru/touchin/common/exceptions/CommonFormException.kt b/common/src/main/kotlin/ru/touchin/common/exceptions/CommonFormException.kt new file mode 100644 index 0000000..998e507 --- /dev/null +++ b/common/src/main/kotlin/ru/touchin/common/exceptions/CommonFormException.kt @@ -0,0 +1,4 @@ +@file:Suppress("unused") +package ru.touchin.common.exceptions + +open class CommonFormException(description: String?) : CommonException(description)