00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #include "XIO.h"
00016
00017
00018
00019
00020
00021 CString
00022 XIOClosed::getWhat() const throw()
00023 {
00024 return format("XIOClosed", "already closed");
00025 }
00026
00027
00028
00029
00030
00031
00032 CString
00033 XIOEndOfStream::getWhat() const throw()
00034 {
00035 return format("XIOEndOfStream", "reached end of stream");
00036 }
00037
00038
00039
00040
00041
00042
00043 CString
00044 XIOWouldBlock::getWhat() const throw()
00045 {
00046 return format("XIOWouldBlock", "stream operation would block");
00047 }