NotFoundWebRouterException constructor

const NotFoundWebRouterException({
  1. String message = '404 Not Found',
})

Implementation

const NotFoundWebRouterException({
  String message = '404 Not Found',
}) : super(
        message: message,
        code: '404',
      );