Files
Geoffroy BONNEVILLE d211453553 WIP ViewModelLocator - Messenger and Recent issues
Refactoring
Code cleanup
2020-04-23 19:00:38 +02:00

17 lines
355 B
C#

using System;
namespace ModernKeePass.Domain.Exceptions
{
public class SaveException : Exception
{
public new string Message { get; }
public new string Source { get; }
public SaveException(Exception exception)
{
Message = exception.Message;
Source = exception.Source;
}
}
}