NeoPZ
pzerror.cpp
Go to the documentation of this file.
1 #include "pzerror.h"
2 
3 void DebugStopImpl(const char *fileName, const std::size_t lineN)
4 {
5 #ifdef WIN32
6  //ShowMessage("Erro encontrado! Entre em contato com o suporte do programa!");
7 #endif
8 #ifdef PZDEBUG
9  std::cerr << "Your chance to put a breakpoint at " << fileName<< ":"<< lineN << "\n";
10 #endif
11  throw std::bad_exception();
12 
13 }
Defines PZError.
void DebugStopImpl(const char *fileName, const std::size_t lineN)
Definition: pzerror.cpp:3