Exception: Cod::ReadOnlyChannel
- Inherits:
-
StandardError
- Object
- StandardError
- Cod::ReadOnlyChannel
- Defined in:
- lib/cod.rb
Overview
Indicates that the channel is read only. This gets raised on operations like #get.
Instance Method Summary collapse
-
#initialize ⇒ ReadOnlyChannel
constructor
A new instance of ReadOnlyChannel.
Constructor Details
#initialize ⇒ ReadOnlyChannel
Returns a new instance of ReadOnlyChannel.
172 173 174 |
# File 'lib/cod.rb', line 172 def initialize super("This channel is read only, attempted write operation.") end |