/// <inheritdoc /> /// <summary> /// Initializes a new <see cref="T:Platibus.TopicNotFoundException" /> with the specified /// <paramref name="topic" /> name /// </summary> /// <param name="topic">The name of the topic that was not found</param> public TopicNotFoundException(TopicName topic) : base(topic) { Topic = topic; }
/// <inheritdoc /> public Task Subscribe(IEndpoint endpoint, TopicName topicName, TimeSpan ttl, CancellationToken cancellationToken = default(CancellationToken)) { return(Task.FromResult(false)); }