summaryrefslogtreecommitdiffstats
path: root/c++/src/H5Exception.h
blob: 0bc12ee9fe01f416f4b41619ec8df4af6c3240db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
// C++ informative line for the emacs editor: -*- C++ -*-
#ifndef _H5Exception_H
#define _H5Exception_H

#include <string>

#ifndef H5_NO_NAMESPACE
namespace H5 {
using namespace std;
#endif

class Exception {
   public:
	// Creates an exception with no message
	Exception();

	// Creates an exception with a detailed message
	Exception( const string& message );

	Exception( const char* message);

	// copy constructor
	Exception( const Exception& orig );

	// Returns the character string that describes an error specified by
	// a major error number.
	string getMajorString( H5E_major_t major_num ) const;

	// Returns the character string that describes an error specified by
	// a minor error number.
	string getMinorString( H5E_minor_t minor_num ) const;

	// Returns the detailed message set at the time the exception is thrown
	string getDetailMesg() const;
	const char* getCDetailMesg() const;	// C string of detailed message

	// Turns on the automatic error printing.
	static void setAutoPrint( H5E_auto_t func, void* client_data );

	// Turns off the automatic error printing.
	static void dontPrint();

	// Retrieves the current settings for the automatic error stack 
	// traversal function and its data.
	static void getAutoPrint( H5E_auto_t& func, void** client_data );

	// Clears the error stack for the current thread.
	static void clearErrorStack();

	// Walks the error stack for the current thread, calling the 
	// specified function.
	static void walkErrorStack( H5E_direction_t direction, 
				H5E_walk_t func, void* client_data );

	// Default error stack traversal callback function that prints 
	// error messages to the specified output stream.
	static void walkDefErrorStack( int n, H5E_error_t& err_desc,
				void* client_data );

	// Prints the error stack in a default manner.
	virtual void printError( FILE* stream = NULL ) const;

	// virtual Destructor
	virtual ~Exception();

   private:
	string detailMessage;
};

class FileIException : public Exception {
   public:
	FileIException();
	FileIException( string message );
	virtual ~FileIException();
};

class GroupIException : public Exception {
   public:
	GroupIException();
	GroupIException( string message );
	virtual ~GroupIException();
};

class DataSpaceIException : public Exception {
   public:
	DataSpaceIException();
	DataSpaceIException( string message );
	virtual ~DataSpaceIException();
};

class DataTypeIException : public Exception {
   public:
	DataTypeIException();
	DataTypeIException( string message );
	virtual ~DataTypeIException();
};

class PropListIException : public Exception {
   public:
	PropListIException();
	PropListIException( string message );
	virtual ~PropListIException();
};

class DataSetIException : public Exception {
   public:
	DataSetIException();
	DataSetIException( string message );
	virtual ~DataSetIException();
};

class AttributeIException : public Exception {
   public:
	AttributeIException();
	AttributeIException( string message );
	virtual ~AttributeIException();
};

class ReferenceException : public Exception {
   public:
	ReferenceException();
	ReferenceException( string message );
	virtual ~ReferenceException();
};

class LibraryIException : public Exception {
   public:
	LibraryIException();
	LibraryIException( string message );
	virtual ~LibraryIException();
};

class IdComponentException : public Exception {
   public:
	IdComponentException();
	IdComponentException( string message );
	virtual ~IdComponentException();
};

// The following are from Java API but not done here:
// AtomException, BtreeException, DataFiltersException, 
// ExternalFilelistException, FunctionEntryExitException, 
// HeapException, InternalErrorException, LowLevelIOException, 
// MetaDataCacheException, ResourceUnavailableException, 
// SymbolTableException, ObjectHeaderException, FunctionArgumentException,
// DataStorageException
#ifndef H5_NO_NAMESPACE
}
#endif

#endif // _H5Exception_H