parent
7b2e3ef0c4
commit
a44be4d902
@ -0,0 +1,31 @@
|
|||||||
|
using System;
|
||||||
|
using NzbDrone.Common.EnvironmentInfo;
|
||||||
|
|
||||||
|
namespace NzbDrone.Common.Exceptron
|
||||||
|
{
|
||||||
|
public static class ExceptionExtentions
|
||||||
|
{
|
||||||
|
private const string IGNORE_FLAG = "exceptron_ignore";
|
||||||
|
|
||||||
|
public static Exception ExceptronIgnoreOnMono(this Exception exception)
|
||||||
|
{
|
||||||
|
if (OsInfo.IsMono)
|
||||||
|
{
|
||||||
|
exception.ExceptronIgnore();
|
||||||
|
}
|
||||||
|
|
||||||
|
return exception;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Exception ExceptronIgnore(this Exception exception)
|
||||||
|
{
|
||||||
|
exception.Data.Add(IGNORE_FLAG, true);
|
||||||
|
return exception;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static bool ExceptronShouldIgnore(this Exception exception)
|
||||||
|
{
|
||||||
|
return exception.Data.Contains(IGNORE_FLAG);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue