### Did you know you can throw custom errors in your widgets? For example, this: ```javascript function get(filePath) { const res = fetch(githubUrl(filePath), { }); if (res.ok) { throw { status: res.status, message: `Failed to fetch ${filePath}: ${res.status} ${res.statusText}` }; } else { return res.body; } ``` Will look like this:  #build #documentation