Exception: Cod::ReadOnlyChannel

Inherits:
StandardError
  • Object
show all
Defined in:
lib/cod.rb

Overview

Indicates that the channel is read only. This gets raised on operations like #get.

Instance Method Summary collapse

Constructor Details

#initializeReadOnlyChannel

Returns a new instance of ReadOnlyChannel.



101
102
103
# File 'lib/cod.rb', line 101

def initialize
  super("This channel is read only, attempted write operation.")
end