exceptions.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012, Willow Garage, Inc.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  * notice, this list of conditions and the following disclaimer in the
12  * documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Willow Garage, Inc. nor the names of its
14  * contributors may be used to endorse or promote products derived from
15  * this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27  * POSSIBILITY OF SUCH DAMAGE.
28  */
29 
30 #ifndef PLUGINLIB__EXCEPTIONS_HPP_
31 #define PLUGINLIB__EXCEPTIONS_HPP_
32 
33 #include <stdexcept>
34 #include <string>
35 
36 namespace pluginlib
37 {
38 
40 
43 class PluginlibException : public std::runtime_error
44 {
45 public:
46  explicit PluginlibException(const std::string & error_desc)
47  : std::runtime_error(error_desc) {}
48 };
49 
51 
55 {
56 public:
57  explicit InvalidXMLException(const std::string & error_desc)
58  : PluginlibException(error_desc) {}
59 };
60 
62 
66 {
67 public:
68  explicit LibraryLoadException(const std::string & error_desc)
69  : PluginlibException(error_desc) {}
70 };
71 
73 
77 {
78 public:
79  explicit ClassLoaderException(const std::string & error_desc)
80  : PluginlibException(error_desc) {}
81 };
82 
84 
88 {
89 public:
90  explicit LibraryUnloadException(const std::string & error_desc)
91  : PluginlibException(error_desc) {}
92 };
93 
95 
99 {
100 public:
101  explicit CreateClassException(const std::string & error_desc)
102  : PluginlibException(error_desc) {}
103 };
104 
105 } // namespace pluginlib
106 
107 #endif // PLUGINLIB__EXCEPTIONS_HPP_
pluginlib::ClassLoaderException
Thrown when pluginlib is unable to instantiate a class loader.
Definition: exceptions.hpp:76
pluginlib::CreateClassException
Thrown when pluginlib is unable to create the class associated with a given plugin.
Definition: exceptions.hpp:98
pluginlib::InvalidXMLException
Thrown when pluginlib is unable to load a plugin XML file.
Definition: exceptions.hpp:54
pluginlib::PluginlibException
A base class for all pluginlib exceptions that inherits from std::runtime_exception.
Definition: exceptions.hpp:43
pluginlib::LibraryUnloadException
Thrown when pluginlib is unable to unload the library associated with a given plugin.
Definition: exceptions.hpp:87
pluginlib::LibraryLoadException::LibraryLoadException
LibraryLoadException(const std::string &error_desc)
Definition: exceptions.hpp:68
pluginlib
Definition: class_desc.hpp:42
pluginlib::ClassLoaderException::ClassLoaderException
ClassLoaderException(const std::string &error_desc)
Definition: exceptions.hpp:79
pluginlib::PluginlibException::PluginlibException
PluginlibException(const std::string &error_desc)
Definition: exceptions.hpp:46
pluginlib::InvalidXMLException::InvalidXMLException
InvalidXMLException(const std::string &error_desc)
Definition: exceptions.hpp:57
std
pluginlib::LibraryUnloadException::LibraryUnloadException
LibraryUnloadException(const std::string &error_desc)
Definition: exceptions.hpp:90
pluginlib::LibraryLoadException
Thrown when pluginlib is unable to load the library associated with a given plugin.
Definition: exceptions.hpp:65
pluginlib::CreateClassException::CreateClassException
CreateClassException(const std::string &error_desc)
Definition: exceptions.hpp:101


pluginlib
Author(s): Eitan Marder-Eppstein, Tully Foote, Dirk Thomas, Mirza Shah
autogenerated on Sat Sep 3 2022 02:52:17