mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-26 01:27:00 +00:00
25 lines
499 B
C#
25 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)
|
|
{
|
|
}
|
|
}
|
|
}
|