Remove unused exception classes in mruby-io gem

This commit is contained in:
KOBAYASHI Shuji
2019-10-11 11:32:14 +09:00
parent 529a336966
commit a7ae0d5b9e
-5
View File
@@ -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)