diff options
Diffstat (limited to 'cppe/src/TcpTransport/EndpointFactory.cpp')
-rw-r--r-- | cppe/src/TcpTransport/EndpointFactory.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cppe/src/TcpTransport/EndpointFactory.cpp b/cppe/src/TcpTransport/EndpointFactory.cpp index 89801a50cb5..050940660ff 100644 --- a/cppe/src/TcpTransport/EndpointFactory.cpp +++ b/cppe/src/TcpTransport/EndpointFactory.cpp @@ -55,9 +55,7 @@ IceInternal::EndpointFactory::create(const std::string& str) const return new TcpEndpoint(_instance, str.substr(end)); } - EndpointParseException ex(__FILE__, __LINE__); - ex.str = str; - throw ex; + return 0; } EndpointPtr |