diff options
Diffstat (limited to 'cpp/src/Ice/SslException2.cpp')
-rw-r--r-- | cpp/src/Ice/SslException2.cpp | 138 |
1 files changed, 138 insertions, 0 deletions
diff --git a/cpp/src/Ice/SslException2.cpp b/cpp/src/Ice/SslException2.cpp new file mode 100644 index 00000000000..16f942fed30 --- /dev/null +++ b/cpp/src/Ice/SslException2.cpp @@ -0,0 +1,138 @@ +// ********************************************************************** +// +// Copyright (c) 2001 +// MutableRealms, Inc. +// Huntsville, AL, USA +// +// All Rights Reserved +// +// ********************************************************************** + +// Note: This pragma is used to disable spurious warning messages having +// to do with the length of debug symbols exceeding 255 characters. +// This is due to STL template identifiers expansion. +// The MSDN Library recommends that you put this pragma directive +// in place to avoid the warnings. +#ifdef WIN32 +#pragma warning(disable:4786) +#endif + +#include <Ice/SslException.h> + +using Ice::SocketException; +using Ice::Exception; +using std::ostream; + + +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::CertificateException::ice_print(ostream& out) const +{ + SslException::ice_print(out); +} + +void
+IceSSL::CertificateVerificationException::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::CertificateVerifierTypeException::ice_print(ostream& out) const +{ + SslException::ice_print(out); +} + +void +IceSSL::OpenSSL::ContextException::ice_print(ostream& out) const +{ + SslException::ice_print(out); +} +
+void
+IceSSL::OpenSSL::ContextInitializationException::ice_print(ostream& out) const
+{
+ SslException::ice_print(out);
+}
+
+void
+IceSSL::OpenSSL::ContextNotConfiguredException::ice_print(ostream& out) const
+{
+ SslException::ice_print(out);
+}
+
+void
+IceSSL::OpenSSL::UnsupportedContextException::ice_print(ostream& out) const
+{
+ SslException::ice_print(out);
+}
+
+void
+IceSSL::OpenSSL::CertificateLoadException::ice_print(ostream& out) const
+{
+ SslException::ice_print(out);
+}
+
+void
+IceSSL::OpenSSL::PrivateKeyLoadException::ice_print(ostream& out) const
+{
+ SslException::ice_print(out);
+}
+
+void
+IceSSL::OpenSSL::CertificateKeyMatchException::ice_print(ostream& out) const
+{
+ SslException::ice_print(out);
+}
+
+void
+IceSSL::OpenSSL::TrustedCertificateAddException::ice_print(ostream& out) const
+{
+ SslException::ice_print(out);
+}
+
|