``` fun getNoThrows(name: String, docUrl: Str...
# kobalt
e
Copy code
fun getNoThrows(name: String, docUrl: String? = null): String? = localProperties.getProperty(name)

    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
    }