``` fun get(name: String, docUrl: String? = nu...
# kobalt
e
Copy code
fun get(name: String, docUrl: String? = null) : String {
        val result = getNoThrows(name)
                ?: throw KobaltException("Couldn't find $name in local.properties", docUrl = docUrl)
        return result
    }