Sha256: fbfdb4b108c94c70035a919faec49c51bc96c11fe4cc3d34ce969d5d21a527fc

Contents?: true

Size: 733 Bytes

Versions: 28

Compression:

Stored size: 733 Bytes

Contents

# frozen_string_literal: true

# Collection of exceptions that can be raised by the application.
module SlimLint::Exceptions
  # Raised when a {Configuration} could not be loaded from a file.
  class ConfigurationError < StandardError; end

  # Raised when invalid/incompatible command line options are provided.
  class InvalidCLIOption < StandardError; end

  # Raised when an invalid file path is specified
  class InvalidFilePath < StandardError; end

  # Raised when the Slim parser is unable to parse a template.
  class ParseError < ::Slim::Parser::SyntaxError; end

  # Raised when attempting to execute `Runner` with options that would result in
  # no linters being enabled.
  class NoLintersError < StandardError; end
end

Version data entries

28 entries across 28 versions & 2 rubygems

Version Path
slim_lint-0.20.1 lib/slim_lint/exceptions.rb
slim_lint-0.20.0 lib/slim_lint/exceptions.rb
slim_lint-0.19.0 lib/slim_lint/exceptions.rb
slim_lint-0.18.0 lib/slim_lint/exceptions.rb
slim_lint-0.17.1 lib/slim_lint/exceptions.rb
slim_lint-0.17.0 lib/slim_lint/exceptions.rb
slim_lint-0.16.1 lib/slim_lint/exceptions.rb
slim_lint-0.16.0 lib/slim_lint/exceptions.rb