34#ifndef DATAQUAY_OBJECT_MAPPER_EXCEPTIONS_H
35#define DATAQUAY_OBJECT_MAPPER_EXCEPTIONS_H
54 virtual const char *
what()
const throw() {
55 return QString(
"Unknown type: %1").arg(
m_type).toLocal8Bit().data();
72 virtual const char *
what()
const throw() {
73 return QString(
"Failed to construct type: %1")
74 .arg(
m_type).toLocal8Bit().data();
91 virtual const char *
what()
const throw() {
92 return QString(
"Object of name \"%1\" and class %2 lacks URI")
ConstructionFailedException is an exception that may be thrown by ObjectMapper classes if a class map...
virtual ~ConstructionFailedException()
virtual const char * what() const
ConstructionFailedException(QString type)
NoUriException is an exception thrown by ObjectMapper classes when asked to store a class that is exp...
virtual ~NoUriException()
NoUriException(QString oname, QString cname)
virtual const char * what() const
UnknownTypeException is an exception thrown by ObjectMapper classes when asked to load an object from...
UnknownTypeException(QString type)
virtual const char * what() const
virtual ~UnknownTypeException()