Exception: XES::FormatError
- Inherits:
-
StandardError
- Object
- StandardError
- XES::FormatError
- Defined in:
- lib/xes/format-error.rb
Overview
FormatError is raised when you failed to format XES element.
Instance Method Summary collapse
-
#initialize(element) ⇒ FormatError
constructor
A new instance of FormatError.
- #message ⇒ Object private
Constructor Details
#initialize(element) ⇒ FormatError
Returns a new instance of FormatError.
6 7 8 |
# File 'lib/xes/format-error.rb', line 6 def initialize(element) @element = element end |
Instance Method Details
#message ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
11 12 13 |
# File 'lib/xes/format-error.rb', line 11 def "Error happened on formatting %s" % @element.inspect end |