12 lines
429 B
Dart
12 lines
429 B
Dart
import 'app_exception.dart';
|
|
|
|
/// A request finished after the account it was started for signed out. Its
|
|
/// result must not reach the state or cache of whoever is signed in now.
|
|
class StaleSessionException extends AppException {
|
|
const StaleSessionException()
|
|
: super(
|
|
userMessage: 'Die Anmeldung hat sich geändert. Bitte lade neu.',
|
|
technicalDetails: 'result of a previous session discarded',
|
|
);
|
|
}
|