Class Sealed
public sealed class SiteConfigException : Exception

Namespace: Moka.Docs.Core.Configuration

Exception thrown when the site configuration is invalid.

Inheritance

Inherits from: Exception

Constructors

Type Relationships
classDiagram
                    style SiteConfigException fill:#f9f,stroke:#333,stroke-width:2px
                    SiteConfigException --|> Exception : inherits
                
View Source
/// <summary>
///     Exception thrown when the site configuration is invalid.
/// </summary>
public sealed class SiteConfigException : Exception
{
    /// <inheritdoc/>
    public SiteConfigException(string message) : base(message)
    {
    }

    /// <inheritdoc/>
    public SiteConfigException(string message, Exception innerException) : base(message, innerException)
    {
    }
}
Was this page helpful?