comparison src/share/vm/utilities/exceptions.hpp @ 6729:d17383603741

7196120: NPG: JSR 2292 test fails because missing fix for 7188911 Reviewed-by: kvn, coleenp
author twisti
date Tue, 04 Sep 2012 18:01:20 -0700
parents da91efe96a93
children aefb345d3f5e
comparison
equal deleted inserted replaced
6728:ca11db66f9de 6729:d17383603741
233 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return; } 233 { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return; }
234 234
235 #define THROW_ARG(name, signature, args) \ 235 #define THROW_ARG(name, signature, args) \
236 { Exceptions::_throw_args(THREAD_AND_LOCATION, name, signature, args); return; } 236 { Exceptions::_throw_args(THREAD_AND_LOCATION, name, signature, args); return; }
237 237
238 #define THROW_MSG_CAUSE(name, message, cause) \
239 { Exceptions::_throw_msg_cause(THREAD_AND_LOCATION, name, message, cause); return; }
240
241 #define THROW_OOP_(e, result) \ 238 #define THROW_OOP_(e, result) \
242 { Exceptions::_throw_oop(THREAD_AND_LOCATION, e); return result; } 239 { Exceptions::_throw_oop(THREAD_AND_LOCATION, e); return result; }
243 240
244 #define THROW_HANDLE_(e, result) \ 241 #define THROW_HANDLE_(e, result) \
245 { Exceptions::_throw(THREAD_AND_LOCATION, e); return result; } 242 { Exceptions::_throw(THREAD_AND_LOCATION, e); return result; }