1 #ifndef MMSEXCEPTION_H_
2 #define MMSEXCEPTION_H_
8 namespace remote
{ namespace protocols
{
12 #define __THROW__(s) throw remote::protocols::MMSException(s,__FILE__,__LINE__);
14 class MMSException
: public exception
17 MMSException(const char* msg
,const char* file
,int line
);
18 ~MMSException() throw ();
19 const char * what () const throw ();
27 #endif /*MMSEXCEPTION_H_*/