pgadmin3/include/pgscript/exceptions/pgsParameterException.h
2020-07-07 22:19:12 +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_*/