Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.217.103
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby33 /
share /
ruby /
irb /
lc /
Delete
Unzip
Name
Size
Permission
Date
Action
ja
[ DIR ]
drwxr-xr-x
2026-05-05 23:08
error.rb
1.09
KB
-rw-r--r--
2026-04-07 17:22
help-message
2.81
KB
-rw-r--r--
2026-04-07 17:22
Save
Rename
# frozen_string_literal: true # # irb/lc/error.rb - # by Keiju ISHITSUKA(keiju@ruby-lang.org) # module IRB # :stopdoc: class UnrecognizedSwitch < StandardError def initialize(val) super("Unrecognized switch: #{val}") end end class CantReturnToNormalMode < StandardError def initialize super("Can't return to normal mode.") end end class IllegalParameter < StandardError def initialize(val) super("Invalid parameter(#{val}).") end end class IrbAlreadyDead < StandardError def initialize super("Irb is already dead.") end end class IrbSwitchedToCurrentThread < StandardError def initialize super("Switched to current thread.") end end class NoSuchJob < StandardError def initialize(val) super("No such job(#{val}).") end end class CantChangeBinding < StandardError def initialize(val) super("Can't change binding to (#{val}).") end end class UndefinedPromptMode < StandardError def initialize(val) super("Undefined prompt mode(#{val}).") end end # :startdoc: end