NotLoggedInException constructor

NotLoggedInException({
  1. required String baseCommand,
})

Implementation

NotLoggedInException({required String baseCommand})
  : super(
      error: 'Not logged in.',
      hint:
          'Run `$baseCommand auth login`, or set the SERVERPOD_CLOUD_TOKEN '
          'environment variable.',
      reason:
          'Not logged in and --non-interactive prevents the interactive login.',
    );