| 77 | : base_type(system::error_code(0, system::generic_category()), "Condition error") |
| 78 | {} |
| 79 | condition_error( int ev ) |
| 80 | : base_type(system::error_code(ev, system::generic_category()), "Condition error") |
| 81 | { |
| 82 | } |
| 83 | condition_error( int ev, const char * what_arg ) |
| 84 | : base_type(system::error_code(ev, system::generic_category()), what_arg) |
| 85 | { |
no test coverage detected