ViewVC Help
View File
|
Revision Log
|
Show Annotations
|
Root Listing
root
/
cvsroot
/
COMP
/
DBS
/
Servers
/
AppServer
/
include
/
GSSException.hpp
Revision:
1.1
Committed:
Mon Oct 31 22:10:36 2005 UTC
(19 years, 6 months ago) by
afaq
Branch point for:
v00, MAIN
Log Message:
Initial revision
File Contents
#
User
Rev
Content
1
afaq
1.1
#ifndef _GSSException_hpp_included_
2
#define _GSSException_hpp_included_
3
#include <string>
4
class GSSException {
5
public:
6
GSSException();
7
GSSException(std::string);
8
std::string report(void);
9
private:
10
std::string message;
11
12
};
13
#endif