Sha256: 41446ebc1c001bdd21eb67273cf01e4d8070e6123ad54815b8ac44c0d1f5acc3

Contents?: true

Size: 1.61 KB

Versions: 4

Compression:

Stored size: 1.61 KB

Contents

module Roadie
  # Base class for all Roadie errors. Rescue this if you want to catch errors
  # from Roadie.
  #
  # If Roadie raises an error that does not inherit this class, please report
  # it as a bug.
  class Error < RuntimeError; end

  # Raised when Roadie encounters an invalid URL which cannot be parsed by
  # Ruby's +URI+ class.
  #
  # This could be a hint that something in your HTML or CSS is broken.
  class InvalidUrlPath < Error
    # The original error, raised from +URI+.
    attr_reader :cause

    def initialize(given_path, cause = nil)
      @cause = cause
      if cause
        cause_message = " Caused by: #{cause}"
      else
        cause_message = ""
      end
      super "Cannot use path \"#{given_path}\" in URL generation.#{cause_message}"
    end
  end

  # Raised when an asset provider cannot find a stylesheet.
  #
  # If you are writing your own asset provider, make sure to raise this in the
  # +#find_stylesheet!+ method.
  #
  # @see AssetProvider
  class CssNotFound < Error
    # The name of the stylesheet that cannot be found
    attr_reader :css_name

    # Provider used when finding
    attr_reader :provider

    # TODO: Change signature in the next major version of Roadie.
    def initialize(css_name, extra_message = nil, provider = nil)
      @css_name = css_name
      @provider = provider
      super build_message(extra_message)
    end

    private
    def build_message(extra_message)
      message = %(Could not find stylesheet "#{css_name}")
      message << ": #{extra_message}" if extra_message
      message << "\nUsed provider:\n#{provider}" if provider
      message
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
roadie-3.0.5 lib/roadie/errors.rb
roadie-3.0.4 lib/roadie/errors.rb
roadie-3.0.3 lib/roadie/errors.rb
roadie-3.0.2 lib/roadie/errors.rb