diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-10-11 19:54:44 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-10-11 19:54:44 +0900 |
| commit | 20ceee794be7defbcc905af2ff85d38db5e2724c (patch) | |
| tree | 485bf16b804d1d8101d928a239e5773461181f9f | |
| parent | 529a3369665522ab2083c8c35bbd246800911baf (diff) | |
| parent | a7ae0d5b9ed765056ea44ac7247e1707b8d25953 (diff) | |
| download | mruby-20ceee794be7defbcc905af2ff85d38db5e2724c.tar.gz mruby-20ceee794be7defbcc905af2ff85d38db5e2724c.zip | |
Merge pull request #4767 from shuujii/remove-unused-exception-classes-in-mruby-io-gem
Remove unused exception classes in `mruby-io` gem
| -rw-r--r-- | mrbgems/mruby-io/mrblib/file.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mrbgems/mruby-io/mrblib/file.rb b/mrbgems/mruby-io/mrblib/file.rb index 514efc1c6..710333d6f 100644 --- a/mrbgems/mruby-io/mrblib/file.rb +++ b/mrbgems/mruby-io/mrblib/file.rb @@ -1,9 +1,4 @@ class File < IO - class FileError < Exception; end - class NoFileError < FileError; end - class UnableToStat < FileError; end - class PermissionError < FileError; end - attr_accessor :path def initialize(fd_or_path, mode = "r", perm = 0666) |
