src/share/vm/oops/method.hpp

changeset 5097
92ef81e2f571
parent 4938
8df6ddda8090
child 5099
8b40495b9381
equal deleted inserted replaced
5094:c272092594bd 5097:92ef81e2f571
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;

mercurial