mirror of
https://github.com/AntonyCorbett/JWLMerge
synced 2026-01-17 03:04:49 -05:00
14 lines
280 B
C#
14 lines
280 B
C#
namespace JWLMerge.BackupFileServices.Exceptions
|
|
{
|
|
using System;
|
|
|
|
[Serializable]
|
|
public class BackupFileServicesException : Exception
|
|
{
|
|
public BackupFileServicesException(string errorMessage)
|
|
: base(errorMessage)
|
|
{
|
|
}
|
|
}
|
|
}
|