hotspot/src/share/vm/oops/method.hpp
changeset 17370 59a0620561fa
parent 17002 d86c9dfa4a5f
child 17372 a8018a1c33e0
equal deleted inserted replaced
17367:64c84d620e5c 17370:59a0620561fa
   994  private:
   994  private:
   995   ExceptionTableElement* _table;
   995   ExceptionTableElement* _table;
   996   u2  _length;
   996   u2  _length;
   997 
   997 
   998  public:
   998  public:
   999   ExceptionTable(Method* m) {
   999   ExceptionTable(const Method* m) {
  1000     if (m->has_exception_handler()) {
  1000     if (m->has_exception_handler()) {
  1001       _table = m->exception_table_start();
  1001       _table = m->exception_table_start();
  1002       _length = m->exception_table_length();
  1002       _length = m->exception_table_length();
  1003     } else {
  1003     } else {
  1004       _table = NULL;
  1004       _table = NULL;