]> err.no Git - sope/blob - sope-gdl1/MySQL/MySQL4Exception.h
use %p for pointer formats
[sope] / sope-gdl1 / MySQL / MySQL4Exception.h
1 /* 
2    MySQL4Exception.h
3
4    Copyright (C) 1999-2005 MDlink online service center GmbH and Helge Hess
5
6    Author: Helge Hess (helge@mdlink.de)
7
8    This file is part of the MySQL4 Adaptor Library
9
10    This library is free software; you can redistribute it and/or
11    modify it under the terms of the GNU Library General Public
12    License as published by the Free Software Foundation; either
13    version 2 of the License, or (at your option) any later version.
14
15    This library is distributed in the hope that it will be useful,
16    but WITHOUT ANY WARRANTY; without even the implied warranty of
17    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18    Library General Public License for more details.
19
20    You should have received a copy of the GNU Library General Public
21    License along with this library; see the file COPYING.LIB.
22    If not, write to the Free Software Foundation,
23    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24 */
25
26 #ifndef ___MySQL4_Exception_H___
27 #define ___MySQL4_Exception_H___
28
29 #import <Foundation/NSException.h>
30
31 @interface MySQL4Exception : NSException
32 {
33 }
34
35 + (void)raiseWithFormat:(NSString *)_format, ...;
36
37 @end
38
39 @interface MySQL4CouldNotOpenChannelException : MySQL4Exception
40 {
41 }
42 @end
43
44 @interface MySQL4CouldNotConnectException : MySQL4CouldNotOpenChannelException
45 {
46 }
47 @end
48
49 @interface MySQL4CouldNotBindException : MySQL4Exception
50 {
51 }
52 @end
53
54 #endif /* ___MySQL4_Exception_H___ */