
com.github.insanusmokrassar.iobjectk.exceptions.WriteException.kt Maven / Gradle / Ivy
package com.github.insanusmokrassar.iobjectk.exceptions
import java.io.IOException
class WriteException : IOException {
constructor(message: String) : super(message) {}
constructor(message: String, cause: Throwable) : super(message, cause) {}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy