Guest User

Untitled

a guest
Mar 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. void foo(std::uint32_t x)
  2. {
  3. try
  4. {
  5. if(x < 10)
  6. {
  7. throw 10;
  8. }
  9. // take Action A
  10. ...
  11. }
  12. catch(std::int32_t y)
  13. {
  14. // take Action B
  15. ...
  16. }
  17. }
Add Comment
Please, Sign In to add comment