aboutsummaryrefslogtreecommitdiffstats
path: root/lib/roo/errors.rb
blob: 9a736b8b0f9a5036769f438825718adc1b345326 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Roo
  # A base error class for Roo. Most errors thrown by Roo should inherit from
  # this class.
  class Error < StandardError; end

  # Raised when Roo cannot find a header row that matches the given column
  # name(s).
  class HeaderRowNotFoundError < Error; end

  class FileNotFound < Error; end
end