pgadmin3/include/pgscript/exceptions/pgsParameterException.h
levinsv 4af765213c support PG11
Поддержка PostgreSQL 11 только для Windows
2018-10-10 22:59:25 +05:00

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_*/