Closed Yamithorn closed 2 years ago
.Batch in CollectionExtensions.cs is currently using a generic Exception for when an unsupported batch size is used (i.e. 0) for batching a list.
.Batch
CollectionExtensions.cs
Exception
Create and implement a new exception, UnsupportedBatchSizeException, to accurately reflect what exception is being thrown.
UnsupportedBatchSizeException
Automatically marking issue as stale due to lack of activity
Automatically closing this issue as stale
Problem Statement
.Batch
inCollectionExtensions.cs
is currently using a genericException
for when an unsupported batch size is used (i.e. 0) for batching a list.Proposed Solution
Create and implement a new exception,
UnsupportedBatchSizeException
, to accurately reflect what exception is being thrown.