class Aggro::Message::UnhandledOperation

Public: Unhandled operation message.

Constants

TYPE_CODE

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/aggro/message/unhandled_operation.rb, line 11
def self.new
  @singleton ||= super
end
parse(_string) click to toggle source
# File lib/aggro/message/unhandled_operation.rb, line 7
def self.parse(_string)
  new
end

Public Instance Methods

to_s() click to toggle source
# File lib/aggro/message/unhandled_operation.rb, line 15
def to_s
  "#{TYPE_CODE}"
end