Sha256: 7f1523f209770e7092085d37bc52523b15c5c3626b39af94dbb460aa5817f175

Contents?: true

Size: 319 Bytes

Versions: 2

Compression:

Stored size: 319 Bytes

Contents

module Roadie
  # Raised when a stylesheet specified for inlining is not present.
  # You can access the target filename via #filename.
  class CSSFileNotFound < StandardError
    attr_reader :filename

    def initialize(filename)
      @filename = filename
      super("Could not find #{filename}")
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
roadie-1.0.1 lib/roadie/css_file_not_found.rb
roadie-1.0.0 lib/roadie/css_file_not_found.rb