Libs/Common/Exception.h
Namespaces
| Name |
|---|
| shapeworks |
Classes
| Name | |
|---|---|
| class | shapeworks::shapeworks_exception |
Source code
#pragma once
#include <stdexcept>
namespace shapeworks {
class shapeworks_exception : public std::runtime_error
{
public:
shapeworks_exception(char const* const message) throw();
shapeworks_exception(std::string const& message) throw();
};
} // shapeworks
Updated on 2022-07-23 at 17:50:04 -0600