Files
Pascal Obry 9478d269f2 Fix file permissions.
git-svn-id: svn+ssh://svn.eu/Dev/trunk/gps@131475 936e1b1b-40f2-da11-902a-00137254ae57
2008-10-25 14:18:11 +00:00

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;