NeoPZ
TPZException.cpp
Go to the documentation of this file.
1 /*
2  * File: TPZException.cpp
3  * Author: thiago
4  *
5  * Created on 21 de Agosto de 2018, 12:14
6  */
7 
8 #include "TPZException.h"
9 
10 TPZException::TPZException(std::string detail) : fDetail(detail) {
11 }
12 
13 std::string TPZException::GetDetail() const {
14  return fDetail;
15 }
16 
18 }
19 
20 void TPZException::SetDetail(std::string detail) {
21  this->fDetail = detail;
22 }
23 
TPZException(std::string detail)
virtual ~TPZException()
void SetDetail(std::string detail)
virtual std::string GetDetail() const
std::string fDetail
Definition: TPZException.h:21