guibranco/VTEX-SDK-dotnet

View on GitHub
Src/VTEX/GoodPractices/BridgeException.cs

Summary

Maintainability
A
35 mins
Test Coverage
// ***********************************************************************
// Assembly         : VTEX
// Author           : Guilherme Branco Stracini
// Created          : 01-15-2023
//
// Last Modified By : Guilherme Branco Stracini
// Last Modified On : 01-16-2023
// ***********************************************************************
// <copyright file="BridgeException.cs" company="Guilherme Branco Stracini">
//     © 2020 Guilherme Branco Stracini. All rights reserved.
// </copyright>
// <summary></summary>
// ***********************************************************************
namespace VTEX.GoodPractices
{
    using System;
    using System.Runtime.Serialization;

    /// <summary>
    /// Class BridgeException. This class cannot be inherited.
    /// </summary>
    /// <seealso cref="Exception" />
    [Serializable]
    public class BridgeException : Exception
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="BridgeException" /> class.
        /// </summary>
        /// <param name="query">The query.</param>
        /// <param name="innerException">The inner exception.</param>
        public BridgeException(string query, Exception innerException)
            : base(
                $"Unable to query the Bridge with query {query}, see inner exception for details.",
                innerException
            ) { }

        /// <summary>
        /// Initializes a new instance of the <see cref="BridgeException" /> class.
        /// </summary>
        /// <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized object data about the exception being thrown.</param>
        /// <param name="context">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains contextual information about the source or destination.</param>
        protected BridgeException(SerializationInfo info, StreamingContext context)
            : base(info, context) { }
    }
}