class MotherBrain::ServiceRunListNotFound
TODO plugin error
Public Class Methods
new(services)
click to toggle source
Calls superclass method
MotherBrain::MBError::new
# File lib/mb/errors.rb, line 171 def initialize(services) if services.respond_to?(:join) services = services.join(", ") end super("Service run list not found for the following services: #{services})") end