Gigas002/GTiff2Tiles

View on GitHub
GTiff2Tiles.Core/Exceptions/DirectoryException.cs

Summary

Maintainability
A
0 mins
Test Coverage
namespace GTiff2Tiles.Core.Exceptions;

/// <inheritdoc />
public sealed class DirectoryException : Exception
{
    #region Constructors

    /// <inheritdoc />
    public DirectoryException(string message) : base(message) { }

    /// <inheritdoc />
    public DirectoryException(string message, Exception innerException) : base(message, innerException) { }

    /// <inheritdoc />
    public DirectoryException() { }

    #endregion
}