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

ru.astrainteractive.astralibs.filemanager.ResourceFileManager.kt Maven / Gradle / Ivy

There is a newer version: 3.14.1
Show newest version
package ru.astrainteractive.astralibs.filemanager

/**
 * This [ResourceFileManager] will save file from resource
 */
interface ResourceFileManager : FileManager {
    val isResourceExists: Boolean

    sealed class Exception(msg: String) : Throwable(msg) {
        class ResourceNotExists(resourceName: String) : kotlin.Exception("Resource $resourceName not exists")
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy