using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Synchronization
{
/// <summary>
/// Represents a database comparison exception.
/// </summary>
/// <seealso cref="System.Exception" />
public class DataBaseComparisonException : Exception
{
/// <summary>
/// Initializes a new instance of the <see cref="DataBaseComparisonException"/> class.
/// </summary>
/// <param name="message">The message that describes the error.</param>
public DataBaseComparisonException(String message) : base(message)
{
}
}
}