exception_handler.rb
来自「Flex for rails的开发demo源码」· RB 代码 · 共 26 行
RB
26 行
require 'app/request_store'
require 'app/amf'
module RubyAMF
module Exceptions
#This class is used to take an RUBYAMFException and translate it into something that is useful when returned back to flash.
class ExceptionHandler
include RubyAMF::App
include RubyAMF::AMF
def ExceptionHandler.HandleException(e, body)
if RequestStore.amf_encoding == 'amf3'
body.results = AS3Fault.new(e)
#trigger RemoteObject failure for AsyncTokens
if body.special_handling == "RemotingMessage"
body.results["correlationId"] = body.get_meta('messageId')
body.results["clientId"] = body.get_meta('clientId') || body.results.correlationId
end
else
body.fail! #force the fail trigger for F8, this causes it to map to the onFault handler
body.results = ASFault.new(e)
end
end
end
end
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?