in src/main/groovy/swing/greet/TwitterAPI.groovy [36:46]
def withStatus(status, c) {
setStatus(status)
try {
def o = c()
setStatus("\u00a0")
return o
} catch (Throwable t) {
setStatus("Error $status : ${t.message =~ '400'?'Rate Limit Reached':t}")
throw t
}
}