com.github.lsqlebai.exception.DataInvalidException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of server-common Show documentation
Show all versions of server-common Show documentation
An kotlin server common jar
package com.github.lsqlebai.exception
class DataInvalidException : RuntimeException {
constructor() {}
constructor(message: String) : super(message)
constructor(message: String, cause: Throwable) : super(message, cause)
constructor(cause: Throwable) : super(cause)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy