Initial merge-commit of the OIC code. Should successfully do discovery for single...
[platform/upstream/iotivity.git] / include / OCException.h
1 //******************************************************************
2 //
3 // Copyright 2014 Intel Corporation All Rights Reserved.
4 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
5
6 #ifndef __INTEL_OCEXCEPTION_H_2014_07_10
7  #define __INTEL_OCEXCEPTION_H_2014_07_10
8
9 #include <stdexcept>
10
11 namespace OC { namespace OCReflect {
12
13 typedef std::runtime_error reflection_exception;
14
15 class OCException : public std::exception
16 {
17
18 };
19
20 }} // namespace OC::OCReflect
21
22 #endif