class Saorin::ServerError

Public Class Methods

new(message, options = {}) click to toggle source
Calls superclass method Saorin::RPCError::new
# File lib/saorin/error.rb, line 55
def initialize(message, options = {})
  options[:code] ||= -32000
  super message, options
end