Print this page


Split Close
Expand all
Collapse all
          --- old/src/share/vm/utilities/exceptions.hpp
          +++ new/src/share/vm/utilities/exceptions.hpp
↓ open down ↓ 227 lines elided ↑ open up ↑
 228  228  
 229  229  #define THROW_CAUSE(name, cause)   \
 230  230    { Exceptions::_throw_cause(THREAD_AND_LOCATION, name, cause); return; }
 231  231  
 232  232  #define THROW_MSG_LOADER(name, message, loader, protection_domain) \
 233  233    { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, message, loader, protection_domain); return;  }
 234  234  
 235  235  #define THROW_ARG(name, signature, args) \
 236  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  238  #define THROW_OOP_(e, result)                       \
 242  239    { Exceptions::_throw_oop(THREAD_AND_LOCATION, e);                           return result; }
 243  240  
 244  241  #define THROW_HANDLE_(e, result)                       \
 245  242    { Exceptions::_throw(THREAD_AND_LOCATION, e);                           return result; }
 246  243  
 247  244  #define THROW_(name, result)                        \
 248  245    { Exceptions::_throw_msg(THREAD_AND_LOCATION, name, NULL); return result; }
 249  246  
 250  247  #define THROW_MSG_(name, message, result)           \
↓ open down ↓ 63 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX