validateServer method
Implementation
Future<void> validateServer() async {
try {
localUserDto = await userTools.getCurrentUserDto(smd, transaction);
} on SqlException catch (e) {
if (e.sqlExceptionEnum == SqlExceptionEnum.ENTRY_NOT_FOUND)
throw RemoteStatusException(RemoteStatus.SERVER_NOT_DEFINED);
}
}