mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-16 06:05:49 -06:00
34 lines
741 B
C++
34 lines
741 B
C++
//////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// pgScript - PostgreSQL Tools
|
|
//
|
|
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
|
|
// This software is released under the PostgreSQL Licence
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#ifndef PGSPARAMETEREXCEPTION_H_
|
|
#define PGSPARAMETEREXCEPTION_H_
|
|
|
|
#include "pgscript/pgScript.h"
|
|
#include "pgscript/exceptions/pgsException.h"
|
|
|
|
class pgsParameterException : public pgsException
|
|
{
|
|
|
|
protected:
|
|
|
|
const wxString m_message;
|
|
|
|
public:
|
|
|
|
pgsParameterException(const wxString &message = wxT("unknown"));
|
|
|
|
virtual ~pgsParameterException();
|
|
|
|
virtual const wxString message() const;
|
|
|
|
};
|
|
|
|
#endif /*PGSPARAMETEREXCEPTION_H_*/
|