38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
=== on 14 Oct 2014, 21:12:44 Freddy Mallet wrote:
|
|
We could imagine for this rule to use tags 'java7' and 'brain-overload'
|
|
|
|
=== on 7 Jan 2016, 19:15:16 Freddy Mallet wrote:
|
|
If my feeling is correct [~ann.campbell.2], the completeness of this rule can be set to 'full' ?
|
|
|
|
=== on 7 Jan 2016, 20:42:20 Ann Campbell wrote:
|
|
Yup. Done.
|
|
|
|
=== on 4 Jul 2016, 20:21:46 Evgeny Mandrikov wrote:
|
|
I'm not aware of an equivalent of Java "multi catch" in {cpp}, so mark as irrelevant.
|
|
|
|
=== on 21 Mar 2018, 19:09:14 Ann Campbell wrote:
|
|
ABAP: \https://wiki.scn.sap.com/wiki/display/profile/2007/09/13/Exception+Handling+in+ABAP
|
|
|
|
|
|
Syntax example:
|
|
|
|
----
|
|
TRY. "Begin of try block
|
|
"Write code here which raises an exception
|
|
|
|
CATCH <EX_CLASS1> <SUBCLASS1><SUBCLASS2>.
|
|
"For catching exceptions of class <EX_CLASS1>
|
|
"Including the subclasses. <SUBCLASS1> & <SUBCLASS2>.
|
|
"Any no of statements
|
|
|
|
CATCH<EX_CLASS2>. "For catching exceptions of class <EX_CLASS2>
|
|
"Including all the subclasses.
|
|
"Any no of statements
|
|
|
|
CATCH cx_root. "For catching catchable exceptions of all kinds
|
|
" Any number of statements
|
|
|
|
ENDTRY.
|
|
----
|
|
|