mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
26 lines
499 B
C#
26 lines
499 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Marr.Data
|
|
{
|
|
public class DataMappingException : Exception
|
|
{
|
|
public DataMappingException()
|
|
: base()
|
|
{
|
|
}
|
|
|
|
public DataMappingException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public DataMappingException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|