class MultipleCliTransportsError

Public Class Methods

new(_cli_tranport_names) click to toggle source
Calls superclass method IllegalStateError::new
# File lib/train-habitat/illegal_state_error.rb, line 28
def initialize(_cli_tranport_names)
  super("Too many CLI-capable transports specified - only one may be used at a time.  Saw: #{cli_transport_names.join(", ")}.")
end