OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
ruby
/
2.5.0
/
json
/
add
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
bigdecimal.rb
598 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
complex.rb
749 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
core.rb
348 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
date.rb
881 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
date_time.rb
1.3 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
exception.rb
799 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
ostruct.rb
797 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
range.rb
786 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
rational.rb
780 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
regexp.rb
760 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
struct.rb
786 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
symbol.rb
614 bytes
05/15/2023 11:41:43 AM
rw-r--r--
📄
time.rb
1016 bytes
05/15/2023 11:41:43 AM
rw-r--r--
Editing: exception.rb
Close
#frozen_string_literal: false unless defined?(::JSON::JSON_LOADED) and ::JSON::JSON_LOADED require 'json' end class Exception # Deserializes JSON string by constructing new Exception object with message # <tt>m</tt> and backtrace <tt>b</tt> serialized with <tt>to_json</tt> def self.json_create(object) result = new(object['m']) result.set_backtrace object['b'] result end # Returns a hash, that will be turned into a JSON object and represent this # object. def as_json(*) { JSON.create_id => self.class.name, 'm' => message, 'b' => backtrace, } end # Stores class name (Exception) with message <tt>m</tt> and backtrace array # <tt>b</tt> as JSON string def to_json(*args) as_json.to_json(*args) end end