1#ifndef __IPPLEXCEPTION_H__
2#define __IPPLEXCEPTION_H__
8 IpplException(
const std::string& meth,
const std::string& descr) {
13 virtual const char* what()
const throw() {
return descr_.c_str(); }
15 virtual const std::string& where()
const {
return meth_; }
Definition IpplException.h:6