mirror of
https://github.com/wismna/ModernKeePass.git
synced 2025-10-03 15:40:18 -04:00
17 lines
355 B
C#
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;
|
|
}
|
|
}
|
|
}
|