File: exception.h

package info (click to toggle)
vdr-plugin-live 2.3.1-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,604 kB
  • sloc: cpp: 5,859; makefile: 254; sh: 129; awk: 39
file content (17 lines) | stat: -rw-r--r-- 322 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef VDR_LIVE_EXCEPTION_H
#define VDR_LIVE_EXCEPTION_H

#include <stdexcept>

namespace vdrlive {

class HtmlError: public std::runtime_error
{
public:
	HtmlError( std::string const& message ): std::runtime_error( message ) {}
	virtual ~HtmlError() throw() {}
};

} // namespace vdrlive

#endif // VDR_LIVE_EXCEPTION_H