1 //////////////////////////////////////////////////////////////////////////
2 //
3 // pgScript - PostgreSQL Tools
4 //
5 // Copyright (C) 2002 - 2016, The pgAdmin Development Team
6 // This software is released under the PostgreSQL Licence
7 //
8 //////////////////////////////////////////////////////////////////////////
9 
10 
11 #ifndef PGSBREAKEXCEPTION_H_
12 #define PGSBREAKEXCEPTION_H_
13 
14 #include "pgscript/pgScript.h"
15 #include "pgscript/exceptions/pgsException.h"
16 
17 class pgsBreakException : public pgsException
18 {
19 
20 public:
21 
22 	pgsBreakException();
23 
24 	virtual ~pgsBreakException();
25 
26 	virtual const wxString message() const;
27 
28 };
29 
30 #endif /*PGSBREAKEXCEPTION_H_*/
31