GalileoHttpException.notFound constructor

GalileoHttpException.notFound({
  1. String message = '404 Not Found',
})

Throws a 404 Not Found error.

Implementation

factory GalileoHttpException.notFound({String message = '404 Not Found'}) =>
    GalileoHttpException(null, message: message, statusCode: 404);