class Spacebunny::LiveStreamNotFound

Public Class Methods

new(name = nil) click to toggle source
Calls superclass method
# File lib/spacebunny/exceptions.rb, line 45
def initialize(name = nil)
  message = if name
              "Live Stream '#{name}' not found. Did you created and configured it?"
            else
              'Live Stream not found'
            end
  super(message)
end