mirror of https://github.com/lidarr/Lidarr
23 lines
427 B
C#
23 lines
427 B
C#
using System;
|
|
|
|
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)
|
|
{
|
|
}
|
|
}
|
|
}
|