Guest User

Untitled

a guest
Feb 23rd, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. function generateSomeError(){
  2. throw Error("YOLO")
  3. }
  4. function exceptionWrapper(func){
  5. return function(){
  6. try{
  7. func()
  8. console.log("OK")
  9. } catch (e) {
  10. console.log("Error")
  11. }
  12. }
  13. }
  14. exceptionWrapper(generateSomeError)()
Add Comment
Please, Sign In to add comment