Exception: ShEx::NotMatched
Overview
TripleExpression did not match
Instance Attribute Summary collapse
-
#expression ⇒ ShEx::Algebra::TripleExpression
readonly
The expression which was not satified.
Attributes inherited from Error
Instance Method Summary collapse
-
#initialize(message, expression: self) ⇒ NotMatched
constructor
Initializes a new parser error instance.
- #inspect ⇒ Object
Constructor Details
#initialize(message, expression: self) ⇒ NotMatched
Initializes a new parser error instance.
164 165 166 167 |
# File 'lib/shex.rb', line 164 def initialize(, expression: self) @expression = expression super(.to_s) end |
Instance Attribute Details
#expression ⇒ ShEx::Algebra::TripleExpression (readonly)
The expression which was not satified
157 158 159 |
# File 'lib/shex.rb', line 157 def expression @expression end |
Instance Method Details
#inspect ⇒ Object
169 170 171 |
# File 'lib/shex.rb', line 169 def inspect super + (expression ? SXP::Generator.string(expression.to_sxp_bin) : '') end |