Class ExceptionExtensions
Extensions to the Exception class to allow for
adding and retrieving suppressed exceptions, like you can do in Java.
Inheritance
ExceptionExtensions
Assembly: Lucene.Net.dll
Syntax
public static class ExceptionExtensions
Fields
SUPPRESSED_EXCEPTIONS_KEY
Extensions to the Exception class to allow for
adding and retrieving suppressed exceptions, like you can do in Java.
Declaration
public static readonly string SUPPRESSED_EXCEPTIONS_KEY
Field Value
Methods
AddSuppressed(Exception, Exception)
Extensions to the Exception class to allow for
adding and retrieving suppressed exceptions, like you can do in Java.
Declaration
public static void AddSuppressed(this Exception e, Exception exception)
Parameters
GetSuppressed(Exception)
Extensions to the Exception class to allow for
adding and retrieving suppressed exceptions, like you can do in Java.
Declaration
public static Exception[] GetSuppressed(this Exception e)
Parameters
Returns
GetSuppressedAsList(Exception)
Extensions to the Exception class to allow for
adding and retrieving suppressed exceptions, like you can do in Java.
Declaration
public static IList<Exception> GetSuppressedAsList(this Exception e)
Parameters
Returns