UNPKG

navigation-stack

Version:

Handles navigation in a web browser

8 lines (6 loc) 192 B
export default class NavigationOutOfBoundsError extends Error { constructor(index) { super(`Location index ${index} is out of navigation history bounds`); this.index = index; } }