UNPKG

300 BJavaScriptView Raw
1import ReamError from './ReamError'
2
3export default {
4 error: err => {
5 throw new ReamError(err)
6 },
7 redirect: url => {
8 throw new ReamError({
9 code: 'REDIRECT',
10 // No error path since we don't really display this error
11 errorPath: null,
12 redirectURL: url
13 })
14 }
15}