``` javascript try { edn.parse("{:a 5"); } catch(e) { console.log('Error:', e); // e is a String here, should be an instance of Error (or of a subclass) } ```