WIP ViewModelLocator - Messenger and Recent issues

Refactoring
Code cleanup
This commit is contained in:
Geoffroy BONNEVILLE
2020-04-23 19:00:38 +02:00
parent 2b8f9bd5f0
commit d211453553
59 changed files with 309 additions and 934 deletions

View File

@@ -4,11 +4,13 @@ namespace ModernKeePass.Domain.Exceptions
{
public class SaveException : Exception
{
public new Exception InnerException { get; }
public new string Message { get; }
public new string Source { get; }
public SaveException(Exception exception)
{
InnerException = exception;
Message = exception.Message;
Source = exception.Source;
}
}
}