Exception.cpp 435 B

123456789101112
  1. // Copyright (c) 2013-2013 Josh Blum
  2. // SPDX-License-Identifier: BSL-1.0
  3. #include <Pothos/Plugin/Exception.hpp>
  4. #include <typeinfo>
  5. namespace Pothos
  6. {
  7. POTHOS_IMPLEMENT_EXCEPTION(PluginPathError, RuntimeException, "Plugin Path Error")
  8. POTHOS_IMPLEMENT_EXCEPTION(PluginRegistryError, RuntimeException, "Plugin Registry Error")
  9. POTHOS_IMPLEMENT_EXCEPTION(PluginModuleError, RuntimeException, "Plugin Module Error")
  10. } //namespace Pothos