blob: d2d861b76784905c0ed912b864beef2f49835c4e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using System.Collections.Generic;
using Apache.Qpid.Proton.Client.Implementation;
namespace Apache.Qpid.Proton.Client
{
/// <summary>
/// An immutable error condition that carries information that aids in
/// determining the factors that lead to the error.
/// </summary>
public interface IErrorCondition
{
/// <summary>
/// Indicates the type of error that this condition conveys
/// </summary>
string Condition { get; }
/// <summary>
/// A description of the condition that resulted in this error.
/// </summary>
string Description { get; }
/// <summary>
/// Optional supplementary information that aids in processing this error.
/// </summary>
IReadOnlyDictionary<string, object> Info { get; }
/// <summary>
/// Create an error condition object using the supplied values. The condition string
/// cannot be null however the other attribute can.
/// </summary>
/// <param name="condition">The string error condition symbolic name</param>
/// <param name="description">Description of the error</param>
/// <param name="info">Optional dictionary containing addition error information</info>
/// <returns></returns>
static IErrorCondition Create(string condition, string description, IDictionary<string, object> info = null)
{
return new ClientErrorCondition(condition, description, info);
}
}
}