/**
* This can be thrown by the get data functions to force a redirect.
* If specific data items necessary to display the page have not been set
*/exportdefaultclassGetDataRedirectextendsError {
constructor (redirectUrl) {
super()
this.redirectUrl = redirectUrl
}
}