lib/redgraph.rb in redgraph-0.2.0 vs lib/redgraph.rb in redgraph-0.2.1

- old
+ new

@@ -19,6 +19,11 @@ class MissingAliasPrefixError < Error def message "The order clause requires the node/edge alias prefix, ie order('node.foo') instead order('foo')" end end + class MissingGraphError < Error + def message + "A graph to use is not defined" + end + end end