class FastCI::EventNotSupportedError

Public Class Methods

new(event) click to toggle source
Calls superclass method
# File lib/fast_ci/exceptions.rb, line 11
def initialize(event)
  msg = "Event '#{event}' not supported. \n" \
        "Supported events are #{FastCI::SUPPORTED_EVENTS.inspect}}"
  super(msg)
end