Raised when trying to do a kind of operation (e.g. copying) which is not supported on a special file (e.g. a named pipe)
| 65 | """Raised when source and destination are the same file.""" |
| 66 | |
| 67 | class SpecialFileError(OSError): |
| 68 | """Raised when trying to do a kind of operation (e.g. copying) which is |
| 69 | not supported on a special file (e.g. a named pipe)""" |
| 70 | |
| 71 | class ExecError(OSError): |
| 72 | """Raised when a command could not be executed""" |