Control Libraries 6.3.4
All Classes Namespaces Functions Variables Typedefs Enumerations Friends Pages
EmptyBaseFrameException.hpp
1#pragma once
2
3#include <iostream>
4#include <exception>
5
6namespace dynamical_systems::exceptions {
7class EmptyBaseFrameException : public std::runtime_error {
8public:
9 explicit EmptyBaseFrameException(const std::string& msg) : runtime_error(msg) {};
10};
11}