为什么不运行*为unique_ptr noexcept?

Kno*_*abe 7 c++ smart-pointers noexcept c++11 c++14

在C++ 11和草案C++ 14中,取消引用运算符(operator*operator->)shared_ptr都是noexcept.但是unique_ptr,operator->noexcept,但是operator*,不是.为什么不operator*unique_ptr noexcept(或者,为什么operator*shared_ptr noexcept)?