GRUTinizer
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
include
RuntimeExceptions.h
Go to the documentation of this file.
1
#ifndef _RUNTIMEEXCEPTIONS_H_
2
#define _RUNTIMEEXCEPTIONS_H_
3
4
#include <stdexcept>
5
6
struct
RuntimeException
:
public
std::runtime_error {
7
RuntimeException
(
const
std::string& msg) : std::runtime_error(msg) { }
8
};
9
10
struct
RuntimeFileNotFound
:
public
RuntimeException
{
11
RuntimeFileNotFound
(
const
std::string& msg) :
RuntimeException
(msg) { }
12
};
13
14
struct
RuntimeSymlinkCreation
:
public
RuntimeException
{
15
RuntimeSymlinkCreation
(
const
std::string& msg) :
RuntimeException
(msg) { }
16
};
17
18
#endif
/* _RUNTIMEEXCEPTIONS_H_ */
Generated on Wed Nov 4 2015 17:27:53 for GRUTinizer by
1.8.1.2