diff options
Diffstat (limited to 'cpp/src/IceSSL/SslException.cpp')
-rw-r--r-- | cpp/src/IceSSL/SslException.cpp | 144 |
1 files changed, 0 insertions, 144 deletions
diff --git a/cpp/src/IceSSL/SslException.cpp b/cpp/src/IceSSL/SslException.cpp deleted file mode 100644 index c4835041a12..00000000000 --- a/cpp/src/IceSSL/SslException.cpp +++ /dev/null @@ -1,144 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#include <Ice/LocalException.h> -#include <IceSSL/Exception.h> - -using namespace std; -using namespace Ice; - -void -IceSSL::SslException::ice_print(ostream& out) const -{ - Exception::ice_print(out); - if(!message.empty()) - { - out << ":\n" << message; - } -} - -void -IceSSL::ConfigurationLoadingException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::ConfigParseException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::ShutdownException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::ProtocolException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::CertificateVerificationException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::CertificateException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::CertificateSigningException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::CertificateSignatureException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::CertificateParseException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::PrivateKeyException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::PrivateKeyParseException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::CertificateVerifierTypeException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::ContextException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::ContextInitializationException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::ContextNotConfiguredException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::UnsupportedContextException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::CertificateLoadException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::PrivateKeyLoadException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::CertificateKeyMatchException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} - -void -IceSSL::TrustedCertificateAddException::ice_print(ostream& out) const -{ - SslException::ice_print(out); -} |