onebeyond/onebeyond-studio-core

View on GitHub
src/OneBeyond.Studio.Infrastructure.Azure/Exceptions/AzureInfrastructureException.cs

Summary

Maintainability
A
0 mins
Test Coverage
using System;
using OneBeyond.Studio.Crosscuts.Exceptions;

namespace OneBeyond.Studio.Infrastructure.Azure.Exceptions;

[Serializable]
public class AzureInfrastructureException : OneBeyondException
{
    public AzureInfrastructureException()
    {
    }

    public AzureInfrastructureException(string message)
        : base(message)
    {
    }

    public AzureInfrastructureException(string message, Exception innerException)
        : base(message, innerException)
    {
    }
}