/library/error/visitor/error_null_visitor.e

http://github.com/jocelyn/EiffelWebReloaded · Specman e · 38 lines · 31 code · 7 blank · 0 comment · 0 complexity · 0012549bdc5a40944d8f7b1b2d8fac0c MD5 · raw file

  1. note
  2. description : "Null error visitor"
  3. legal: "See notice at end of class."
  4. status: "See notice at end of class."
  5. date: "$Date$"
  6. revision: "$Revision$"
  7. class
  8. ERROR_NULL_VISITOR
  9. inherit
  10. ERROR_VISITOR
  11. feature -- Access
  12. process_error (e: ERROR)
  13. do
  14. end
  15. process_custom (e: ERROR_CUSTOM)
  16. do
  17. end
  18. process_group (g: ERROR_GROUP)
  19. do
  20. end
  21. note
  22. copyright: "Copyright (c) 1984-2011, Eiffel Software and others"
  23. license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
  24. source: "[
  25. Eiffel Software
  26. 5949 Hollister Ave., Goleta, CA 93117 USA
  27. Telephone 805-685-1006, Fax 805-685-6869
  28. Website http://www.eiffel.com
  29. Customer support http://support.eiffel.com
  30. ]"
  31. end