diff options
author | Mark Spruiell <mes@zeroc.com> | 2006-03-28 20:53:42 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2006-03-28 20:53:42 +0000 |
commit | 0a58e76f0fde2dcddd5505951fe5f1201d36ced7 (patch) | |
tree | 1929d74d1a70670fe74e863de4dacad5c37aa7a4 /cpp/src/IceSSL/SslException.cpp | |
parent | minor fix (diff) | |
download | ice-0a58e76f0fde2dcddd5505951fe5f1201d36ced7.tar.bz2 ice-0a58e76f0fde2dcddd5505951fe5f1201d36ced7.tar.xz ice-0a58e76f0fde2dcddd5505951fe5f1201d36ced7.zip |
new IceSSL plugin
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); -} |