Sha256: 26a021bf3870c661a129d923f6fd594a5ba4a94fddcb01f36076f5b65dcb34b4

Contents?: true

Size: 327 Bytes

Versions: 10

Compression:

Stored size: 327 Bytes

Contents

module CiteProc

  class Error < StandardError
    attr_reader :original

    def initialize(message, original = $!)
      @original = original
			super(message)
    end
  end

  class ParseError < Error; end

  class EngineError < Error; end

  class NotImplementedError < Error; end

  class RenderingError < Error; end

end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
citeproc-1.0.10 lib/citeproc/errors.rb
citeproc-1.0.9 lib/citeproc/errors.rb
citeproc-1.0.8 lib/citeproc/errors.rb
citeproc-1.0.7 lib/citeproc/errors.rb
citeproc-1.0.6 lib/citeproc/errors.rb
citeproc-1.0.5 lib/citeproc/errors.rb
citeproc-1.0.4 lib/citeproc/errors.rb
citeproc-1.0.3 lib/citeproc/errors.rb
citeproc-1.0.2 lib/citeproc/errors.rb
citeproc-1.0.1 lib/citeproc/errors.rb