CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions
edm::UnknownModuleException Class Reference

Exception thrown when trying to instance a module which is not registered to the system. More...

#include "edm/UnknownModuleException.h"

Inheritance diagram for edm::UnknownModuleException:
cms::Exception

Public Member Functions

 UnknownModuleException (const std::string &moduletype)
 
 ~UnknownModuleException () throw ()
 
- Public Member Functions inherited from cms::Exception
void append (Exception const &another)
 
void append (std::string const &more_information)
 
void append (char const *more_information)
 
std::string category () const
 
 Exception (Category const &category)
 
 Exception (Category const &category, std::string const &message)
 
 Exception (Category const &category, std::string const &message, Exception const &another)
 
 Exception (Exception const &other)
 
virtual std::string explainSelf () const
 
CategoryList const & history () const
 
void raise ()
 
std::string rootCause () const
 
virtual char const * what () const throw ()
 
virtual ~Exception () throw ()
 

Additional Inherited Members

- Public Types inherited from cms::Exception
typedef std::string Category
 
typedef std::list< CategoryCategoryList
 

Detailed Description

Exception thrown when trying to instance a module which is not registered to the system.

Author
Stefano ARGIRO
Date
02 Jun 2005

Definition at line 28 of file UnknownModuleException.h.

Constructor & Destructor Documentation

edm::UnknownModuleException::UnknownModuleException ( const std::string &  moduletype)
inline

Definition at line 31 of file UnknownModuleException.h.

31  :
32  cms::Exception("UnknownModule")
33  {
34  (*this) << "Module " << moduletype << " was not registered \n"
35  "Perhaps your module type is misspelled or is not a "
36  "framework plugin \n"
37  "Try running EdmPluginDump to obtain a list "
38  "of available Plugins\n";
39  }
edm::UnknownModuleException::~UnknownModuleException ( )
throw (
)
inline

Definition at line 40 of file UnknownModuleException.h.

40 {}