diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-08-01 14:31:37 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-08-09 10:21:53 -0700 |
commit | ce2e7e5197ea7db5454a381c5b75c1c63b2d2d59 (patch) | |
tree | 92ff13fb95222cc5e595172cc393150a96f93049 /host/lib | |
parent | f360059b99d4ae11e5279b8999364ec1fe2997a3 (diff) | |
download | uhd-ce2e7e5197ea7db5454a381c5b75c1c63b2d2d59.tar.gz uhd-ce2e7e5197ea7db5454a381c5b75c1c63b2d2d59.tar.bz2 uhd-ce2e7e5197ea7db5454a381c5b75c1c63b2d2d59.zip |
uhd: Added syntax error exception type
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/exception.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/host/lib/exception.cpp b/host/lib/exception.cpp index a9e36fd15..fc87fe791 100644 --- a/host/lib/exception.cpp +++ b/host/lib/exception.cpp @@ -43,6 +43,7 @@ make_exception_impl("EnvironmentError", environment_error, exception) make_exception_impl("IOError", io_error, environment_error) make_exception_impl("OSError", os_error, environment_error) make_exception_impl("SystemError", system_error, exception) +make_exception_impl("SyntaxError", syntax_error, exception) usb_error::usb_error(int code, const std::string &what): runtime_error(str(boost::format("%s %d: %s") % "USBError" % code % what)), _code(code) {} |