OpenIndiana and Solaris port
[oweals/cde.git] / cde / programs / dtinfo / DtMmdb / dti_cc / cc_exceptions.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $TOG: cc_exceptions.h /main/5 1998/04/17 11:44:44 mgreess $ */
24
25 #ifndef _cc_exception_h
26 #define _cc_exception_h 1
27
28 #include <fstream>
29 #include <iostream>
30 using namespace std;
31 #include "Exceptions.hh"
32
33 #define END_TRY end_try 
34
35 #include <X11/Xosdefs.h>
36 #include <errno.h>
37 #ifdef X_NOT_STDC_ENV
38 extern int errno;
39 #endif
40
41 #define CASTCCEXCEPT
42 #define CASTCCSEXCEPT
43 #define CASTCCBEXCEPT
44
45 class ccException : public Exception
46 {
47 public:
48    DECLARE_EXCEPTION(ccException, Exception)
49
50    virtual ~ccException() {};
51
52    virtual ostream& asciiOut(ostream&);
53
54    friend ostream& operator <<(ostream& out, ccException& e) {
55       return e.asciiOut(out);
56    }
57 };
58
59
60 class ccStringException : public ccException
61 {
62 protected:
63    char* msg;
64
65 public:
66    DECLARE_EXCEPTION(ccStringException, ccException)
67
68    ccStringException(char const* m) : msg((char*)m) {};
69    ~ccStringException() {};
70
71    virtual ostream& asciiOut(ostream&);
72 };
73
74 class ccBoundaryException : public ccException
75 {
76
77 protected:
78    int low;
79    int high;
80    int mindex;
81
82 public:
83    DECLARE_EXCEPTION(ccBoundaryException, ccException)
84
85    ccBoundaryException(int l, int h, int i) : 
86      low(l), high(h), mindex(i) {};
87    ~ccBoundaryException() {};
88
89    virtual ostream& asciiOut(ostream&);
90 };
91
92
93 #endif