Interface IExceptionConfigurator
- Namespace
- MassTransit
- Assembly
- MassTransit.Abstractions.dll
public interface IExceptionConfigurator
Methods
Handle(params Type[])
void Handle(params Type[] exceptionTypes)
Parameters
exceptionTypes
Type[]
Handle<T>()
void Handle<T>() where T : Exception
Type Parameters
T
Handle<T>(Func<T, bool>)
void Handle<T>(Func<T, bool> filter) where T : Exception
Parameters
filter
Func<T, bool>
Type Parameters
T
Ignore(params Type[])
void Ignore(params Type[] exceptionTypes)
Parameters
exceptionTypes
Type[]
Ignore<T>()
void Ignore<T>() where T : Exception
Type Parameters
T
Ignore<T>(Func<T, bool>)
void Ignore<T>(Func<T, bool> filter) where T : Exception
Parameters
filter
Func<T, bool>
Type Parameters
T