Catching Errors

We can catch errors with the DB service:
fun {DBGet Key} {DB get(Key $)} end
fun {DBCondGet Key Default}
   try {DBGet Key} catch _ then Default end
end