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
| Name | Description |
|---|---|
SiteConfigException(string message) |
|
SiteConfigException(string message, Exception innerException) |
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)
{
}
}