Sha256: 541f6d9f5b8c6106c34bfc8d718eb7345ac6b92d188526e727c51b30c50c7597

Contents?: true

Size: 370 Bytes

Versions: 11

Compression:

Stored size: 370 Bytes

Contents

module Tabulous

  class TabulousError < StandardError
    def initialize(msg=nil)
      msg = "Tabulous Error: #{msg}"
      super
    end
  end

  class ColumnError < TabulousError; end
  class NoTabFoundError < TabulousError; end
  class UnknownTabError < TabulousError; end
  class TabNameError < TabulousError; end
  class FormattingError < TabulousError; end

end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
tabulous-1.3.2 lib/tabulous/errors.rb
tabulous-1.3.1 lib/tabulous/errors.rb
tabulous-1.3.0 lib/tabulous/errors.rb
tabulous-1.2.0 lib/tabulous/errors.rb
tabulous-1.1.0 lib/tabulous/errors.rb
tabulous-1.0.3 lib/tabulous/errors.rb
tabulous-1.0.2 lib/tabulous/errors.rb
tabulous-1.0.1 lib/tabulous/errors.rb
tabulous-1.0.0 lib/tabulous/errors.rb
tabulous-0.0.2 lib/tabulous/errors.rb
tabulous-0.0.1 lib/tabulous/errors.rb