pgadmin3/include/pgscript/exceptions/pgsAssertException.h
2020-07-07 22:19:12 +05:00

34 lines
706 B
C++

//////////////////////////////////////////////////////////////////////////
//
// pgScript - PostgreSQL Tools
//
// Copyright (C) 2002 - 2016, The pgAdmin Development Team
// This software is released under the PostgreSQL Licence
//
//////////////////////////////////////////////////////////////////////////
#ifndef PGSASSERTEXCEPTION_H_
#define PGSASSERTEXCEPTION_H_
#include "pgscript/pgScript.h"
#include "pgscript/exceptions/pgsException.h"
class pgsAssertException : public pgsException
{
protected:
const wxString m_message;
public:
pgsAssertException(const wxString &message);
virtual ~pgsAssertException();
virtual const wxString message() const;
};
#endif /*PGSASSERTEXCEPTION_H_*/