Page MenuHomec4science

NotImplementedError.cpp
No OneTemporary

File Metadata

Created
Thu, May 9, 00:35

NotImplementedError.cpp

/*
* NotImplementedError.cpp
*
* Created on: Jan 18, 2013
* Author: tuleu
*/
#include "NotImplementedError.h"
namespace rci {
namespace oncilla {
const char * NotImplementedError::INFO_NOTICE =
" is an open source project, and in continuous development, with a \n"
"very small development team. It means that some features does have an \n"
"interface, but are not implemented. Please check the redmine collaborative \n"
"platform at https://redmine.amarsi-project.eu/projects/quaddrivers/issues to\n"
"checkout if this missing feature is planned and assigned to someone.\n"
"If not please fill a feature request. Please remind that any development would\n"
"be faster if you do it yourself and share your implementation with others."
;
NotImplementedError::NotImplementedError(const std::string & component,
const std::string & methodName,
const std::string & className)
: UnavailableInterfaceError((className.empty() ? " Function " + methodName + "()"
: "Method " + className + "::" + methodName + "()")
+ " is not implemented in " + component,
component,
methodName,
className,
component + INFO_NOTICE){
}
NotImplementedError::~NotImplementedError() throw(){
}
} /* namespace oncilla */
} /* namespace rci */

Event Timeline