Sha256: 561ea33c660f3cf175ca0163a8bd9f4e8110b39815fdad6deb9146b3a4ae36f0
Contents?: true
Size: 406 Bytes
Versions: 14
Compression:
Stored size: 406 Bytes
Contents
# encoding: utf-8 # frozen_string_literal: true module RuboCop # An Error exception is different from an Offense with severity 'error' # When this exception is raised, it means that RuboCop is unable to perform # a requested action (probably due to misconfiguration) and must stop # immediately, rather than carrying on class Error < StandardError; end class ValidationError < Error; end end
Version data entries
14 entries across 14 versions & 2 rubygems