Sha256: 1402fc40a73158da6c56f1ab0c9346cd23129c1a4cb155c4420878acdce5b045
Contents?: true
Size: 417 Bytes
Versions: 32
Compression:
Stored size: 417 Bytes
Contents
# frozen_string_literal: true module RubyCI class EventAlreadyDefinedError < StandardError def initialize(event) super("Event '#{event}' is already defined") end end class EventNotSupportedError < StandardError def initialize(event) msg = "Event '#{event}' not supported. \n" \ "Supported events are #{RubyCI::SUPPORTED_EVENTS.inspect}}" super(msg) end end end
Version data entries
32 entries across 32 versions & 1 rubygems