
ru.astrainteractive.astralibs.filemanager.ResourceFileManager.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core utilities for spigot development
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 - 2025 Weber Informatics LLC | Privacy Policy