Guest User

Untitled

a guest
Jul 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1.  
  2.  
  3. class Parser
  4. {
  5. var _error_msg;
  6.  
  7. function parse()
  8. {
  9. try
  10. {
  11. if(!non_tag)
  12. throw "Тэг не найден";
  13.  
  14. if(!non_correct_value)
  15. throw "Неверное значение";
  16.  
  17. return TRUE;
  18. }
  19. catch(Exception e)
  20. {
  21. $this->_error_msg = e->getMessage();
  22. }
  23. }
  24. }
Add Comment
Please, Sign In to add comment