# TickFailed Constructors

[Type overview](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.reminders.diagnostics.reminderevents.tickfailed/)

## TickFailed(GrainId, string, TickStatus, Exception, SiloAddress?) {#constructor-orleans-runtime-grainid-string-orleans-runtime-tickstatus-system-exc-9e9fefc9}

[Dedicated page](/orleans/docs/api/csharp/microsoft.orleans.reminders/orleans.reminders.diagnostics.reminderevents.tickfailed/constructors/constructor-orleans-runtime-grainid-string-orleans-runtime-tickstatus-system-exc-9e9fefc9/)

[Source](https://github.com/dotnet/orleans/blob/e4e752cedecc2976811db49802c7a999b1f1c704/src/Orleans.Reminders/Diagnostics/ReminderEvents.cs#L269-L279)

```csharp
public TickFailed(GrainId grainId, string reminderName, TickStatus status, Exception exception, SiloAddress? siloAddress)
```

Event payload for when a reminder tick has failed.

### Parameters

- `grainId` (`GrainId`): The grain associated with the reminder.
- `reminderName` (`string`): The reminder name.
- `status` (`TickStatus`): The tick status passed to the grain.
- `exception` (`Exception`): The exception that caused the failure.
- `siloAddress` (`SiloAddress?`): The address of the silo handling this reminder.
