class NoServicesFoundError

Public Class Methods

new(origin, name) click to toggle source
Calls superclass method IllegalStateError::new
# File lib/train-habitat/illegal_state_error.rb, line 10
def initialize(origin, name)
  super("Expected one service '#{origin}/#{name}', but found none.")
end