Class RejectedWithValueException<TPayload>
An exception thrown when a Thunk is rejected.
Implements
Inherited Members
Namespace: Unity.AppUI.Redux
Assembly: Unity.AppUI.Redux.dll
Syntax
public class RejectedWithValueException<TPayload> : Exception, ISerializable
Type Parameters
Name | Description |
---|---|
TPayload | The type of the payload. |
Constructors
RejectedWithValueException(TPayload)
Create a new instance of the RejectedWithValueException<TPayload> class.
Declaration
public RejectedWithValueException(TPayload value)
Parameters
Type | Name | Description |
---|---|---|
TPayload | value | The value of the rejection. |
Properties
Value
The value of the rejection.
Declaration
public TPayload Value { get; }
Property Value
Type | Description |
---|---|
TPayload |