acdream/src/AcDream.Headless/Configuration/HeadlessConfigurationException.cs
Erik aada8a37c1 feat(headless): establish portable Linux host boundary
Add the presentation-free acdream-headless executable, strict no-connect configuration validation, dependency and assembly guards, and a Windows/Ubuntu CI lane that builds and tests only the portable runtime closure.

Co-authored-by: Codex <noreply@openai.com>
2026-07-27 01:10:45 +02:00

9 lines
208 B
C#

namespace AcDream.Headless.Configuration;
internal sealed class HeadlessConfigurationException : Exception
{
internal HeadlessConfigurationException(string message)
: base(message)
{
}
}