Sha256: 654af0a94ba60e3744c2fe72dcd99ffa36cd03f6a58e02a1bfc0ffbe89e9ccd3
Contents?: true
Size: 1.45 KB
Versions: 20
Compression:
Stored size: 1.45 KB
Contents
# frozen_string_literal: true module RubyRabbitmqJanus module Errors module Janus module Responses module Standard class Base < RubyRabbitmqJanus::Errors::BaseJanus def initialize(message) super 'Standard', message end end class Session < Base def initialize super 'Error reading response session' end end class Sender < Base def initialize super 'Error reading response sender' end end class SessionId < Base def initialize super 'Error reading response session_id' end end class Plugin < Base def initialize super 'rror reading response plugin' end end class PluginData < Base def initialize super 'Error reading response plugin data' end end class Data < Base def initialize super 'Error reading response data' end end class JSEP < Base def initialize super 'Error reading response JSEP' end end class SDP < Base def initialize super 'Error reading SDP (jsep > sdp in response)' end end end end end end end
Version data entries
20 entries across 20 versions & 1 rubygems