Changeset 9924
- Timestamp:
- 03/02/10 16:49:07 (3 years ago)
- Location:
- ossiedev/trunk/system/ossie/framework
- Files:
-
- 2 modified
-
FileManager_impl.cpp (modified) (1 diff)
-
FileSystem_impl.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ossiedev/trunk/system/ossie/framework/FileManager_impl.cpp
r9807 r9924 358 358 if (ex.code().value() == EINVAL) 359 359 throw CF::InvalidFileName(CF::CFEINVAL, ex.what()); 360 #else 361 } catch (const boost::system::system_error &ex) { 362 363 throw CF::FileException(CF::CFNOTSET, ex.what()); 360 364 #endif 361 362 throw CF::FileException(CF::CFNOTSET, ex.what());363 365 } 364 366 } -
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")