org.babyfish.jimmer.ksp.dto.DtoException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jimmer-ksp Show documentation
Show all versions of jimmer-ksp Show documentation
A revolutionary ORM framework for both java and kotlin
package org.babyfish.jimmer.ksp.dto
import java.lang.RuntimeException
class DtoException(
message: String, cause: Throwable? = null
): RuntimeException(message, cause)