MCPcopy Create free account
hub / github.com/catboost/catboost / CustomFsError

Class CustomFsError

library/python/fs/__init__.py:30–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28
29
30class CustomFsError(OSError):
31 def __init__(self, errno, message='', filename=None):
32 super(CustomFsError, self).__init__(message)
33 self.errno = errno
34 self.strerror = os.strerror(errno)
35 self.filename = filename
36
37
38# Directories creation

Callers 2

hardlink_treeFunction · 0.85
copy_fileFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected