std::basic_ios<CharT,Traits>::exceptions
From cppreference.com
| std::ios_base::iostate exceptions() const; |
(1) | |
| void exceptions( std::ios_base::iostate except ); |
(2) | |
Gets and sets the exception mask of the stream. The exception mask determines which error states trigger exceptions of type failure.
1) Returns the exception mask.
2) Sets the exception mask to except. If the stream has an error state covered by the exception mask when called, an exception is immediately triggered.
Contents |