All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.kgit2.kommand.exception.KommandException.kt Maven / Gradle / Ivy

package com.kgit2.kommand.exception

class KommandException(
    message: String?,
    val errorType: ErrorType?,
) : Exception(message)

enum class ErrorType {
    None,
    IO,
    Utf8,
    Unknown,
    ;
    companion object;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy