Returns the size in bytes of the JVMS exception_table corresponding to the Handler list that begins with the given element. This includes the exception_table_length field. @param firstHandler the beginning of a Handler list. May be null . @return the size in bytes of the exception_ta
(final Handler firstHandler)
| 173 | * @return the size in bytes of the exception_table_length and exception_table structures. |
| 174 | */ |
| 175 | static int getExceptionTableSize(final Handler firstHandler) { |
| 176 | return 2 + 8 * getExceptionTableLength(firstHandler); |
| 177 | } |
| 178 | |
| 179 | /** |
| 180 | * Puts the JVMS exception_table corresponding to the Handler list that begins with the given |
no test coverage detected