OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
ruby
/
2.5.0
/
shell
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:14:11 AM
rwxr-xr-x
📄
builtin-command.rb
2.43 KB
10/07/2016 05:18:57 AM
rw-r--r--
📄
command-processor.rb
18.7 KB
05/15/2023 11:41:43 AM
rw-r--r--
📄
error.rb
604 bytes
12/16/2015 05:07:31 AM
rw-r--r--
📄
filter.rb
2.59 KB
03/29/2017 11:49:39 AM
rw-r--r--
📄
process-controller.rb
7.51 KB
10/08/2017 07:00:01 AM
rw-r--r--
📄
system-command.rb
3.59 KB
06/22/2017 10:56:49 AM
rw-r--r--
📄
version.rb
286 bytes
12/16/2015 05:07:31 AM
rw-r--r--
Editing: error.rb
Close
# frozen_string_literal: false # # shell/error.rb - # $Release Version: 0.7 $ # $Revision: 53141 $ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # require "e2mmap" class Shell module Error extend Exception2MessageMapper def_e2message TypeError, "wrong argument type %s (expected %s)" def_exception :DirStackEmpty, "Directory stack empty." def_exception :CantDefine, "Can't define method(%s, %s)." def_exception :CantApplyMethod, "This method(%s) does not apply to this type(%s)." def_exception :CommandNotFound, "Command not found(%s)." end end