| William A. Kennington III | 2f21073 | 2020-08-02 16:12:36 -0700 | [diff] [blame] | 1 | #include <stdplus/exception.hpp> | 
|  | 2 |  | 
| William A. Kennington III | 9a70f4e | 2021-05-01 17:16:57 -0700 | [diff] [blame] | 3 | // These will only be used if the compiler doesn't support them | 
| Patrick Williams | 5e3b13f | 2021-08-28 14:43:46 -0500 | [diff] [blame] | 4 | #if !__has_builtin(__builtin_LINE) | 
| William A. Kennington III | 9a70f4e | 2021-05-01 17:16:57 -0700 | [diff] [blame] | 5 | int __builtin_LINE() | 
|  | 6 | { | 
|  | 7 | return -1; | 
|  | 8 | } | 
|  | 9 | const char* __builtin_FILE() | 
|  | 10 | { | 
|  | 11 | return "<unknown>"; | 
|  | 12 | } | 
|  | 13 | const char* __builtin_FUNCTION() | 
|  | 14 | { | 
|  | 15 | return "<unknown>"; | 
|  | 16 | } | 
| Patrick Williams | 5e3b13f | 2021-08-28 14:43:46 -0500 | [diff] [blame] | 17 | #endif | 
| William A. Kennington III | 9a70f4e | 2021-05-01 17:16:57 -0700 | [diff] [blame] | 18 |  | 
| William A. Kennington III | 2f21073 | 2020-08-02 16:12:36 -0700 | [diff] [blame] | 19 | namespace stdplus | 
|  | 20 | { | 
|  | 21 | namespace exception | 
|  | 22 | { | 
|  | 23 |  | 
|  | 24 | WouldBlock::WouldBlock(const char* what) : | 
|  | 25 | std::system_error(std::make_error_code(std::errc::operation_would_block), | 
|  | 26 | what) | 
| Patrick Williams | d1984dd | 2023-05-10 16:12:44 -0500 | [diff] [blame] | 27 | {} | 
| William A. Kennington III | 2f21073 | 2020-08-02 16:12:36 -0700 | [diff] [blame] | 28 |  | 
|  | 29 | WouldBlock::WouldBlock(const std::string& what) : | 
|  | 30 | std::system_error(std::make_error_code(std::errc::operation_would_block), | 
|  | 31 | what) | 
| Patrick Williams | d1984dd | 2023-05-10 16:12:44 -0500 | [diff] [blame] | 32 | {} | 
| William A. Kennington III | 2f21073 | 2020-08-02 16:12:36 -0700 | [diff] [blame] | 33 |  | 
|  | 34 | Eof::Eof(const char* what) : | 
|  | 35 | std::system_error(std::make_error_code(std::errc::no_message_available), | 
|  | 36 | what) | 
| Patrick Williams | d1984dd | 2023-05-10 16:12:44 -0500 | [diff] [blame] | 37 | {} | 
| William A. Kennington III | 2f21073 | 2020-08-02 16:12:36 -0700 | [diff] [blame] | 38 |  | 
|  | 39 | Eof::Eof(const std::string& what) : | 
|  | 40 | std::system_error(std::make_error_code(std::errc::no_message_available), | 
|  | 41 | what) | 
| Patrick Williams | d1984dd | 2023-05-10 16:12:44 -0500 | [diff] [blame] | 42 | {} | 
| William A. Kennington III | 2f21073 | 2020-08-02 16:12:36 -0700 | [diff] [blame] | 43 |  | 
|  | 44 | } // namespace exception | 
|  | 45 | } // namespace stdplus |