1 #ifndef INVALID_VERTEX_SHADER_EXCEPTION_H
2 #define INVALID_VERTEX_SHADER_EXCEPTION_H
9 unsigned int vertex_shader_binding;
12 this->vertex_shader_binding = vertex_shader_binding;
15 virtual const char*
what()
const throw() {
17 s <<
"Invalid vertex shader object with binding: " << this->vertex_shader_binding;
18 return s.str().c_str();
virtual const char * what() const
Definition: invalid_vertex_shader_exception.h:15
InvalidVertexShaderException(const unsigned int vertex_shader_binding)
Definition: invalid_vertex_shader_exception.h:11
Definition: invalid_vertex_shader_exception.h:7