[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / docs / ecma334 / 23.4.xml
1 <?xml version="1.0"?>
2 <clause number="23.4" title="Common Exception Classes">
3   <paragraph>The following exceptions are thrown by certain C# operations. <table_line>System.ArithmeticException A base class for exceptions that occur during </table_line>
4 <table_line>arithmetic operations, such as </table_line>
5 <table_line>System.DivideByZeroException and </table_line>
6 <table_line>System.OverflowException. </table_line>
7 <table_line>System.ArrayTypeMismatchException Thrown when a store into an array fails because the </table_line>
8 <table_line>actual type of the stored element is incompatible </table_line>
9 <table_line>with the actual type of the array. </table_line>
10 <table_line>System.DivideByZeroException Thrown when an attempt to divide an integral </table_line>
11 <table_line>value by zero occurs. </table_line>
12 <table_line>System.IndexOutOfRangeException Thrown when an attempt to index an array via an </table_line>
13 <table_line>index that is less than zero or outside the bounds of </table_line>
14 <table_line>the array. </table_line>
15 <table_line>System.InvalidCastException Thrown when an explicit conversion from a base </table_line>
16 <table_line>type or interface to a derived type fails at run time. </table_line>
17 <table_line>System.NullReferenceException Thrown when a null reference is used in a way </table_line>
18 <table_line>that causes the referenced object to be required. </table_line>
19 <table_line>System.OutOfMemoryException Thrown when an attempt to allocate memory (via </table_line>
20 <table_line>new) fails. </table_line>
21 <table_line>System.OverflowException Thrown when an arithmetic operation in a </table_line>
22 <table_line>checked context overflows. </table_line>
23 <table_line>System.StackOverflowException Thrown when the execution stack is exhausted by </table_line>
24 <table_line>having too many pending method calls; typically </table_line>
25 <table_line>indicative of very deep or unbounded recursion. </table_line>
26 <table_line>System.TypeInitializationException Thrown when a static constructor throws an </table_line>
27 <table_line>exception, and no catch clauses exists to catch it. </table_line>
28 </paragraph>
29 </clause>