Guest User

Untitled

a guest
Jun 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. try:
  2. tmp = os.system("c:/windows/system32/taskkill /f /im NULL.exe")
  3. except OSError as e:
  4. print("We made it into the excepetion!!" + str(e))
  5.  
  6. try:
  7. tmp = os.system("c:/windows/system32/taskkill /f /im NULL.exe")
  8. except OSError:
  9. print("We made it into the excepetion!!")
  10.  
  11. try:
  12. tmp = os.system("c:/windows/system32/taskkill /f /im NULL.exe")
  13. except os.error:
  14. print("We made it into the excepetion!!")
  15.  
  16. try:
  17. tmp = os.system("c:/windows/system32/taskkill /f /im NULL.exe")
  18. except ValueError:
  19. print("We made it into the excepetion!!")
  20.  
  21. try:
  22. tmp = os.system("c:/windows/system32/taskkill /f /im NULL.exe")
  23. except:
  24. print("We made it into the excepetion!!")
Add Comment
Please, Sign In to add comment