Home | C-Bits Package Documentation | Project Page |
00001 /* ==================================================================== 00002 * The CBITS Software License, Version 1.0 00003 * 00004 * Copyright (c) 2002-2003 Bruce Lowery 00005 * All rights reserved 00006 * 00007 * Redistribution and use of this software, in source and binary forms, 00008 * with or without modification, are permitted provided that the above 00009 * copyright notice, this paragraph, and the following paragraph are 00010 * retained in each source code file. 00011 * 00012 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED 00013 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 00014 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 00015 * DISCLAIMED. IN NO EVENT SHALL BRUCE LOWERY OR OTHER CONTRIBUTORS 00016 * TO THE CBITS LIBRARY BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 00017 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 00018 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF 00019 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 00020 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 00021 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 00022 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 00023 * SUCH DAMAGE. 00024 * ==================================================================== 00025 */ 00026 #ifndef __SOCKETEXCEPTION_H__ 00027 #define __SOCKETEXCEPTION_H__ 00028 00029 #include <string> 00030 #include <exception> 00031 00032 00033 #ifdef BUILD_DLL 00034 #define EXPORT __declspec(dllexport) 00035 #else 00036 #define EXPORT 00037 #endif 00038 00039 00040 namespace cbits { 00041 00042 class EXPORT SocketException : public std::exception 00043 { 00044 00045 public: 00046 inline SocketException( const char *s ) : std::exception(), msg(s) {} 00047 inline ~SocketException() throw() {} 00048 inline std::string getMessage() { return msg; } 00049 00050 protected: 00051 std::string msg; 00052 }; 00053 00054 }; 00055 #endif 00056 00057 /* 00058 * $Id: SocketException.h,v 1.5 2002/10/14 21:08:00 brulow Exp $ 00059 * 00060 * History: (Add nothing manually below) 00061 * ----------------------------------------------------------------------- 00062 * 00063 * $Log: SocketException.h,v $ 00064 * Revision 1.5 2002/10/14 21:08:00 brulow 00065 * *** empty log message *** 00066 * 00067 * Revision 1.4 2002/10/13 20:12:59 brulow 00068 * *** empty log message *** 00069 * 00070 * Revision 1.3 2002/10/12 02:19:56 brulow 00071 * Add socket pkg unit tests 00072 * 00073 * Revision 1.2 2002/09/27 22:04:16 brulow 00074 * Add history footer to all .h .cpp files 00075 * 00076 * 00077 */
|
|