Files
modernkeepass/ModernKeePass.Domain.12/Exceptions/SaveException.cs

15 lines
283 B
C#
Raw Normal View History

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