Sha256: ea85ff7b8bd8848dea9dc65472aa02b4a4dec360fcc7dbd0f4f1356c11dacd27
Contents?: true
Size: 594 Bytes
Versions: 32
Compression:
Stored size: 594 Bytes
Contents
module Ox # Base error class for Ox errors. class Error < StandardError end # Error # An Exception that is raised as a result of a parse error while parsing a XML document. class ParseError < Error end # ParseError # An Exception that is raised as a result of an invalid argument. class ArgError < Error end # ArgError # An Exception raised if a path is not valid. class InvalidPath < Error # Create a new instance with the +path+ specified. def initialize(path) super("#{path.join('/')} is not a valid location.") end end # InvalidPath end # Ox
Version data entries
32 entries across 32 versions & 2 rubygems