You've already forked gnatstudio
mirror of
https://github.com/AdaCore/gnatstudio.git
synced 2026-02-12 12:42:33 -08:00
16 lines
444 B
Ada
16 lines
444 B
Ada
-- Basic exceptions used throughout SDC
|
|
|
|
package Except is
|
|
|
|
Internal_Error : exception;
|
|
-- Raised when an internal error is detected in one of SDC's modules.
|
|
|
|
Exit_SDC : exception;
|
|
-- Should be raised to have a clean exit from SDC.
|
|
|
|
User_Error : exception;
|
|
-- Generic exception raised upon encountering a user input error.
|
|
-- This exception is handled during lexical analysis in package Tokens.
|
|
|
|
end Except;
|