Format | Assembly Format | Description |
---|---|---|
FE 1A | rethrow |
Rethrow the current exception. |
…, → …,
The rethrow
instruction is only permitted within the body of a catch handler (see Partition I). It throws the same exception that was caught by this handler. A rethrow does not change the stack trace in the object.
The original exception is thrown.
Correct CIL uses this instruction only within the body of a catch handler (not of any exception handlers embedded within that catch handler). If a rethrow occurs elsewhere, an exception will be thrown, but precisely which exception, is undefined
There are no additional verification requirements.