diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-06-20 17:08:20 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-06-20 17:08:20 +0000 |
commit | 19fec04e12e5f2456d8f060c1454345d7a7af35c (patch) | |
tree | 0759747e1395a4a9f1f9856784f29d195343fef8 /cppe/src/TcpTransport/EndpointFactory.cpp | |
parent | Separated TCP into separate transport library (diff) | |
download | ice-19fec04e12e5f2456d8f060c1454345d7a7af35c.tar.bz2 ice-19fec04e12e5f2456d8f060c1454345d7a7af35c.tar.xz ice-19fec04e12e5f2456d8f060c1454345d7a7af35c.zip |
Separated transport into separate library
Diffstat (limited to 'cppe/src/TcpTransport/EndpointFactory.cpp')
-rw-r--r-- | cppe/src/TcpTransport/EndpointFactory.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cppe/src/TcpTransport/EndpointFactory.cpp b/cppe/src/TcpTransport/EndpointFactory.cpp index d7a0a61525a..82c8970fcbc 100644 --- a/cppe/src/TcpTransport/EndpointFactory.cpp +++ b/cppe/src/TcpTransport/EndpointFactory.cpp @@ -55,6 +55,8 @@ IceInternal::EndpointFactory::create(const std::string& str) const } EndpointParseException ex(__FILE__, __LINE__); + ex.str = str; + throw ex; } EndpointPtr |