diff options
Diffstat (limited to 'Timeline/Services/DataManager.cs')
-rw-r--r-- | Timeline/Services/DataManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Timeline/Services/DataManager.cs b/Timeline/Services/DataManager.cs index 66aa6f81..d6b8b6a4 100644 --- a/Timeline/Services/DataManager.cs +++ b/Timeline/Services/DataManager.cs @@ -115,7 +115,7 @@ namespace Timeline.Services var entity = await _database.Data.Where(d => d.Tag == tag).Select(d => new { d.Data }).SingleOrDefaultAsync();
if (entity == null)
- throw new InvalidOperationException("Entry with given tag does not exist.");
+ throw new InvalidOperationException(Resources.Services.DataManager.ExceptionEntryNotExist);
return entity.Data;
}
|