mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 09:47:39 +00:00
22 lines
427 B
C#
22 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)
|
|
{
|
|
}
|
|
}
|
|
}
|