Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an official name for Java 7's combined / multi-catch block?

Upon discussing the multiple-catch / combined catch block here with ambiguity between the terms "multiple catch block," meaning the Java 7 feature:

try { .. } catch (ExceptionA | ExceptionB ex) { .. }

and "multiple catch blocks," meaning literally, multiple catch blocks:

} catch (ExceptionA exa) { ..
} catch (ExceptionB exb) { .. }

I've researched to see if the Java 7 feature has a specific, official name that can be used to clearly distinguish it from the older style of catching multiple exceptions. However, Oracle sources don't seem to name this feature anywhere, while some other sources (like Eclipse and SO) call it a "multi-catch" block.

Is there an official, Oracle-given name for this feature anywhere?

like image 852
FThompson Avatar asked May 08 '15 01:05

FThompson


1 Answers

The Java Language Specification section 14.20 refers to uni-catch and multi-catch clauses, which is about as official as it gets.

A catch clause whose exception parameter is denoted as a single class type is called a uni-catch clause.

A catch clause whose exception parameter is denoted as a union of types is called a multi-catch clause.

Of course, prior to Java 7 there were no multi-catch clauses, so the term "uni-catch" was never necessary until multi-catch was introduced.

The term multi-catch is distinct from having more than one (several, multiple) catch clauses.

like image 109
Stuart Marks Avatar answered Nov 16 '22 01:11

Stuart Marks