base_exception.h
Go to the documentation of this file.
1 
8 #pragma once
9 #include <string>
10 #include <stdexcept>
11 
12 #ifdef _MSC_VER
13 #pragma warning(disable:4290) // MSVC warns that it ignores the exception specification.
14 #endif
15 
16 namespace illumina { namespace interop { namespace util
17 {
18 
21  struct base_exception : public std::runtime_error
22  {
27  base_exception(const std::string &mesg) : std::runtime_error(mesg)
28  { }
29  };
30 
31 }}}
32 
Definition: enum_description.h:15
Definition: base_exception.h:21
base_exception(const std::string &mesg)
Definition: base_exception.h:27