11.3 Raise Statements and Raise Expressions
This Reference Manual output has not been verified, and may contain omissions or errors. Report any problems on the tracking issue
[A raise_statement
raises an exception.]
Syntax
2/2raise_statement
::=
raise;
| raise exception_name
[with string_expression
];
2.1/4
raise_expression
::=
raise exception_name
[with string_simple_expression
]
2.2/4
If a raise_expression
appears within the expression
of one of the following contexts, the raise_expression
shall appear within a pair of parentheses within the expression
:
object_declaration
; 2.4/4modular_type_definition
; 2.5/4floating_point_definition
; 2.6/4ordinary_fixed_point_definition
; 2.7/4decimal_fixed_point_definition
; 2.8/4default_expression
; 2.9/4ancestor_part
.
Unlike conditional expressions, this doesn't say "immediately surrounded"; the only requirement is that it is somehow within a pair of parentheses that is part of the expression
. We need this restriction in order that raise_expression
s cannot be syntactically confused with immediately following constructs (such as aspect_specification
s).
We only need to require that a right parenthesis appear somewhere between the raise_expression
and the surrounding context; that's all we need to specify in order to eliminate the ambiguities. Moreover, we don't care at all where the left parenthesis is (so long as it is legal, of course).
For instance, the following is illegal by this rule:
Obj : Boolean := Func_Call or else raise TBD_Error with Atomic;
as the "with Atomic" could be part of the raise_expression or part of the object declaration. Both of the following are legal:
Obj : Boolean := Func_Call or else (raise TBD_Error) with Atomic;
Obj : Boolean := (Func_Call or else raise TBD_Error) with Atomic;
and if the with belongs to the raise_expression
, then both of the following are legal:
Obj : Boolean := Func_Call or else (raise TBD_Error with Atomic);
Obj : Boolean := (Func_Call or else raise TBD_Error with Atomic);
This rule only requires parentheses for raise_expression
s that are part of the "top-level" of an expression
in one of the named contexts; the raise_expression
is either the entire expression
, or part of a chain of logical operations. In practice, the raise_expression
will almost always be last in interesting top-level expression
s; anything that follows it could never be executed, so that should be rare. Other contexts such as conditional expressions, qualified expressions, aggregates, and even function calls, provide the needed parentheses. All of the following are legal, no additional parens are needed:
Pre : Boolean := (if not Is_Valid(Param) then raise Not_Valid_Error);
A : A_Tagged := (Some_Tagged'(raise TBD_Error) with Comp => 'A');
B : Some_Array := (1, 2, 3, others => raise Not_Valid_Error);
C : Natural := Func (Val => raise TBD_Error);
Parentheses that are part of the context of the expression
don't count. For instance, the parentheses around the raise_expression
are required in the following:
D : A_Tagged := ((raise TBD_Error) with Comp => 'A');
as ancestor_part
is one of the contexts that triggers the rule.
This English-language rule could have been implemented instead by adding nonterminals initial_expression
and initial_relation
, which are the same as choice_expression
and choice_relation
except for the inclusion of membership in initial_relation
. Then, initial_expresion
could be used in place of expression
in all of the contexts noted. We did not do that because of the large amount of change required, both to the grammar and to language rules that refer to the grammar. A complete grammar is given in .
The use of a raise_expression
is illegal in each of modular_type_definition
, floating_point_definition
, ordinary_fixed_point_definition
, and decimal_fixed_point_definition
as these uses are required to be static and a raise_expression
is never static. We include these in this rule so that Ada text has an unambiguous syntax in these cases.
Legality Rules
3/4The exception_name
, if any, of a raise_statement
or raise_expression
shall denote an exception. A raise_statement
with no exception_name
(that is, a re-raise statement) shall be within a handler, but not within a body enclosed by that handler.
Name Resolution Rules
3.1/4The string_expression
or string_simple_expression
, if any, of a raise_statement
or raise_expression
is expected to be of type String.
The expected type for a raise_expression
shall be any single type.
Dynamic Semantics
4/4To raise an exception is to raise a new occurrence of that exception[, as explained in 11.4]. For the execution of a raise_statement
with an exception_name
, the named exception is raised. Similarly, for the evaluation of a raise_expression
, the named exception is raised. [In both of these cases, if a string_expression
or string_simple_expression
is present, the expression is evaluated and its value is associated with the exception occurrence.] For the execution of a re-raise statement, the exception occurrence that caused transfer of control to the innermost enclosing handler is raised [again].
The definition of Exceptions.Exception_Message includes a statement that the string is returned (see 11.4.1). We describe the use of the string here so that we don't have an unexplained parameter in this subclause.
For a re-raise statement, the implementation does not create a new Exception_Occurrence, but instead propagates the same Exception_Occurrence value. This allows the original cause of the exception to be determined.
Term entry: raise an exception — abandon normal program execution so as to draw attention to the fact that the corresponding situation has arisen
NOTE If the evaluation of a string_expression
or string_simple_expression
raises an exception, that exception is propagated instead of the one denoted by the exception_name
of the raise_statement
or raise_expression
.
Examples
5Examples of raise statements:
raise Ada.IO_Exceptions.Name_Error; -- see A.13
raise Queue_Error with "Buffer Full"; -- see 9.11
7
raise; -- re-raise the current exception
8/5
-- For an example of a raise expression, see the Streams Subsystem definitions in 13.13.1.
Wording Changes from Ada 83
The fact that the name
in a raise_statement
has to denote an exception is not clear from RM83. Clearly that was the intent, since the italicized part of the syntax rules so indicate, but there was no explicit rule. RM83-1.5(11) doesn't seem to give the italicized parts of the syntax any force.
Extensions to Ada 95
The syntax of a raise_statement
is extended to include a string message. This is more convenient than calling Exceptions.Exception_Message (exception_name
'Identity, string_expression
), and should encourage the use of message strings when raising exceptions.
Extensions to Ada 2012
Corrigendum: The raise_expression
is new. This construct is necessary to allow conversion of existing specifications to use preconditions and predicates without changing the exceptions raised. It is considered important enough to be added to Ada 2012 rather than waiting for Ada 2022.