- Timestamp:
- 03/02/10 16:49:07 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
ossiedev/trunk/system/ossie/framework/FileSystem_impl.cpp
r9807 r9924 128 128 if (ex.code().value() == ENOENT) 129 129 throw CF::FileException(CF::CFENOENT, ex.what()); 130 #else 131 } catch (const boost::system::system_error &ex ) { 132 throw CF::FileException(CF::CFENOENT, ex.what()); 130 133 #endif 131 134 } … … 205 208 if (ex.code().value() == EINVAL) 206 209 throw CF::InvalidFileName(CF::CFEINVAL, ex.what()); 207 #endif 210 #else 211 } catch (const boost::system::system_error &ex) { 208 212 throw CF::FileException(CF::CFNOTSET, ex.what()); 213 #endif 209 214 } 210 215 DEBUG(4, FileSystem, "Leaving recursiveList")