File exception.h
Location: exception.h
Classes
Namespaces
Included by
Source
#ifndef f3d_exception_h
#define f3d_exception_h
#include <stdexcept>
#include <string>
namespace f3d
{
struct exception : public std::runtime_error
{
explicit exception(const std::string& what = "")
: std::runtime_error(what)
{
}
};
}
#endif