first commit
This commit is contained in:
21
excepts/vp_invalid_pipeline_error.h
Executable file
21
excepts/vp_invalid_pipeline_error.h
Executable file
@@ -0,0 +1,21 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdexcept>
|
||||
|
||||
namespace vp_excepts {
|
||||
|
||||
class vp_invalid_pipeline_error: public std::runtime_error {
|
||||
private:
|
||||
/* data */
|
||||
public:
|
||||
vp_invalid_pipeline_error(const std::string& what_arg);
|
||||
~vp_invalid_pipeline_error();
|
||||
};
|
||||
|
||||
inline vp_invalid_pipeline_error::vp_invalid_pipeline_error(const std::string& what_arg): std::runtime_error(what_arg) {
|
||||
}
|
||||
|
||||
inline vp_invalid_pipeline_error::~vp_invalid_pipeline_error() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user