001package gudusoft.gsqlparser.catalog.diagnostic;
002
003/**
004 * Severity level of a {@link CatalogDiagnostic}.
005 *
006 * <p>See <code>docs/designs/catalog-input-interface-implementation-plan.md</code>
007 * §7.3 for the surfacing rules and §15 for the failure-handling matrix.</p>
008 *
009 * <p>Phase 1A skeleton — final implementation in P1B (T1B.13).</p>
010 */
011public enum CatalogDiagnosticSeverity {
012    INFO,
013    WARN,
014    ERROR
015}