Sha256: fe3a23c4cdfb89ea4bdf4715e8473aa8a2cbbce1f623017348b3d0913b7d9482
Contents?: true
Size: 600 Bytes
Versions: 2
Compression:
Stored size: 600 Bytes
Contents
#!/usr/bin/env ruby require 'treequel' # A collection of exceptions for Treequel. # # == Authors # # * Michael Granger <ged@FaerieMUD.org> # # :include: LICENSE # #-- # # Please see the file LICENSE in the base directory for licensing details. # module Treequel ### The base Treequel exception type class Error < ::RuntimeError; end ### Schema parsing errors class ParseError < Treequel::Error; end ### Exception type raised when an expression cannot be parsed from the ### arguments given to Treequel::Filter.new class ExpressionError < Treequel::Error; end end # module Treequel
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
treequel-1.0.1 | lib/treequel/exceptions.rb |
treequel-1.0.0 | lib/treequel/exceptions.rb |