11 lines
167 B
Ruby
Raw Normal View History

2021-09-11 01:00:23 +01:00
# typed: strict
# frozen_string_literal: true
module Homebrew
module Livecheck
# Error during a livecheck run.
class Error < RuntimeError
end
end
end