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