Nymph Game Engine
Chaiscript based Game Engine
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
invalid_shader_program_exception.h
Go to the documentation of this file.
1 #ifndef INVALID_SHADER_PROGRAM_EXCEPTION_H
2 #define INVALID_SHADER_PROGRAM_EXCEPTION_H
3 #include <exception>
4 #include <sstream>
5 
6 namespace Exceptions {
7  class InvalidShaderProgramException : public std::exception {
8  private:
9  unsigned int shader_program;
10  public:
11  InvalidShaderProgramException(const unsigned int shader_program) {
12  this->shader_program = shader_program;
13  }
14 
15  virtual const char* what() const throw() {
16  std::stringstream s;
17  s << "Invalid shader program with binding: " << this->shader_program;
18  return s.str().c_str();
19  }
20  };
21 }
22 #endif
virtual const char * what() const
Definition: invalid_shader_program_exception.h:15
InvalidShaderProgramException(const unsigned int shader_program)
Definition: invalid_shader_program_exception.h:11
Definition: invalid_shader_program_exception.h:7