class WashOut::Dispatcher::SOAPError

A SOAPError exception can be raised to return a correct SOAP error response.

Attributes

code[RW]

Public Class Methods

new(message, code=nil) click to toggle source
Calls superclass method
# File lib/wash_out/dispatcher.rb, line 10
def initialize(message, code=nil)
  super(message)
  @code = code
end