Display a validation error as a snippet of text.
There are no attributes in this class.
snippet()
Convert a widget input error to an html snippet
>>> from zope.interface.exceptions import Invalid
>>> error = Invalid("You made an error!")
>>> InvalidErrorView(error, None).snippet()
u'<span class="error">You made an error!</span>'
There are no known subclasses.