Control Libraries
7.4.0
Loading...
Searching...
No Matches
source
state_representation
include
state_representation
exceptions
InvalidCastException.hpp
1
#pragma once
2
3
#include <stdexcept>
4
#include <string>
5
6
namespace
state_representation::exceptions {
7
class
InvalidCastException
:
public
std::runtime_error {
8
public
:
9
explicit
InvalidCastException
(
const
std::string& msg) : runtime_error(msg) {};
10
};
11
}
state_representation::exceptions::InvalidCastException
Definition
InvalidCastException.hpp:7
Generated by
1.9.8