Add 'unflatten' to doxygen/dot processing
[senf.git] / Socket / Protocols / AddressExceptions.hh
index 2409cd0..ea020de 100644 (file)
@@ -23,8 +23,8 @@
 /** \file
     \brief AddressExceptions public header */
 
-#ifndef HH_AddressExceptions_
-#define HH_AddressExceptions_ 1
+#ifndef HH_SENF_Socket_Protocols_AddressExceptions_
+#define HH_SENF_Socket_Protocols_AddressExceptions_ 1
 
 // Custom includes
 #include "../Utils/Exception.hh"
@@ -46,14 +46,16 @@ namespace senf {
     struct AddressSyntaxException : public AddressException
     {
         AddressSyntaxException() : AddressException("invalid address syntax") {}
-        AddressSyntaxException(std::string const & msg) : AddressException(msg) {}
+        AddressSyntaxException(const std::string &addr)
+            : AddressException("Invalid address syntax (\"" + addr + "\")") {}
     };
 
     /** \brief Resolver failure */
     struct UnknownHostnameException : public AddressException
     { 
         UnknownHostnameException() : AddressException("failed to resolve hostname") {} 
-        UnknownHostnameException(std::string const & msg) : AddressException(msg) {}
+        UnknownHostnameException(const std::string &hostname)
+            : AddressException("Failed to resolve hostname (\"" + hostname + "\")") {}
     };
 
 }