Exception: CardanoUp::SessionServiceNotUpError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/cardano-up/err.rb

Overview

Thrown when service not exists in session

Instance Method Summary collapse

Constructor Details

#initialize(session_name, env, service) ⇒ SessionServiceNotUpError

Returns a new instance of SessionServiceNotUpError.



6
7
8
# File 'lib/cardano-up/err.rb', line 6

def initialize(session_name, env, service)
  super("Service '#{service}' is not running on '#{env}' in session '#{session_name}'!")
end