Class ReducerDoesNotExist
Exception that gets thrown when an reducer does not exist.
public class ReducerDoesNotExist : Exception, ISerializable
- Inheritance
-
ReducerDoesNotExist
- Implements
- Inherited Members
Remarks
Initializes a new instance of ReducerDoesNotExist.
Constructors
ReducerDoesNotExist(ReducerId)
Exception that gets thrown when an reducer does not exist.
public ReducerDoesNotExist(ReducerId reducer)
Parameters
Remarks
Initializes a new instance of ReducerDoesNotExist.
Methods
ThrowIfDoesNotExist(ReducerId, IReducerHandler?)
Throw if the reducer does not exist.
public static void ThrowIfDoesNotExist(ReducerId reducerId, IReducerHandler? reducer)
Parameters
reducerId
ReducerIdThe ReducerId of the reducer.
reducer
IReducerHandlerThe possible null IReducerHandler >value to check.
Exceptions
- ReducerDoesNotExist
Thrown if the reducer handler value is null.