GalileoHttpException.notAuthenticated constructor

GalileoHttpException.notAuthenticated({
  1. String message = '401 Not Authenticated',
})

Throws a 401 Not Authenticated error.

Implementation

factory GalileoHttpException.notAuthenticated({String message = '401 Not Authenticated'}) =>
    GalileoHttpException(null, message: message, statusCode: 401);