Would be great to be able to specify a global error handler for status codes > 304 so I can ignore errors while writing network requests. ``` js Net.setup({ errors : (statusCode, jsonContent, responseObject) => { // Do something with that pesky error } }); ```