Files
beaglefw/exceptions.hh
Matthias Blankertz ba680cccdf -Added support for I2C module
-Initial support for TPS65950
-Support for changing CPU frequency in prcm driver
-Preparations for context switching
2013-07-12 20:29:34 +02:00

16 lines
271 B
C++

#ifndef _EXCEPTIONS_HH_
#define _EXCEPTIONS_HH_
namespace ex {
// A memory allocation, or virtual address space allocation, failed
class bad_alloc{};
// An operation timed out
class timeout{};
// An unexcpected fatal error occured
class error{};
}
#endif