2013-05-11 23:38:41 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
2013-08-28 06:51:42 +00:00
|
|
|
|
namespace NzbDrone.Common.Messaging.Events
|
2013-05-11 23:38:41 +00:00
|
|
|
|
{
|
|
|
|
|
public class CommandFailedEvent : IEvent
|
|
|
|
|
{
|
|
|
|
|
public ICommand Command { get; private set; }
|
|
|
|
|
public Exception Exception { get; private set; }
|
|
|
|
|
|
|
|
|
|
public CommandFailedEvent(ICommand command, Exception exception)
|
|
|
|
|
{
|
|
|
|
|
Command = command;
|
|
|
|
|
Exception = exception;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|