aboutsummaryrefslogtreecommitdiff
path: root/examples/cxx/hybrid/binary/custom/exceptions.hxx
blob: 6592ecbfda70795f8bd7147fa84099a3860c568d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// file      : examples/cxx/hybrid/binary/custom/exceptions.hxx
// copyright : not copyrighted - public domain

#ifndef EXCEPTIONS_HXX
#define EXCEPTIONS_HXX

#include <exception> // std::exception

struct raw_exception: std::exception
{
  virtual const char*
  what () const throw ();
};

#endif // EXCEPTIONS_HXX