[exceptions] add CommonFormException

This commit is contained in:
Alexander Buntakov 2023-03-11 19:10:35 +03:00
parent 96689c6ba5
commit b07d975aff
1 changed files with 4 additions and 0 deletions

View File

@ -0,0 +1,4 @@
@file:Suppress("unused")
package ru.touchin.common.exceptions
open class CommonFormException(description: String?) : CommonException(description)