RouteNotSetException.ts 165 B

12345678
  1. class RouteNotSetException extends Error {
  2. public constructor() {
  3. super('Route was not set.');
  4. this.name = 'RouteNotSet';
  5. }
  6. }
  7. export { RouteNotSetException };