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)