Files
JWLMerge/JWLMerge.BackupFileServices/Exceptions/BackupFileServicesException.cs
2018-01-21 07:42:02 +00:00

14 lines
280 B
C#

namespace JWLMerge.BackupFileServices.Exceptions
{
using System;
[Serializable]
public class BackupFileServicesException : Exception
{
public BackupFileServicesException(string errorMessage)
: base(errorMessage)
{
}
}
}