EXCEPTION exception-name [ "(" parameter-type ")" ] ";"
Exceptions can only be declared at the top-level of a module or interface. If they will take an argument, a parameter type parameter-type must be specified in parentheses.
EXCEPTION
  UserAbort(TEXT);
  EndOfFile;
PROCEDURE GetInformation RAISES { UserAbort };