namespace Wox.Infrastructure.Exception { /// /// Represent exceptions that wox can't handle and MUST close running Wox. /// public class WoxFatalException : WoxException { public WoxFatalException(string msg) : base(msg) { } } }