Moved TranslatorException class to utils directory.
This commit is contained in:
parent
f6cfc55e21
commit
6a83147ac0
@ -1,12 +1,12 @@
|
|||||||
#ifndef __PLASP__SAS__TRANSLATOR_EXCEPTION_H
|
#ifndef __PLASP__UTILS__TRANSLATOR_EXCEPTION_H
|
||||||
#define __PLASP__SAS__TRANSLATOR_EXCEPTION_H
|
#define __PLASP__UTILS__TRANSLATOR_EXCEPTION_H
|
||||||
|
|
||||||
#include <exception>
|
#include <exception>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
namespace plasp
|
namespace plasp
|
||||||
{
|
{
|
||||||
namespace sas
|
namespace utils
|
||||||
{
|
{
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
@ -39,7 +39,7 @@ class TranslatorException: public std::exception
|
|||||||
const char *what() const throw()
|
const char *what() const throw()
|
||||||
{
|
{
|
||||||
if (m_message.empty())
|
if (m_message.empty())
|
||||||
return "Unspecified error while translating SAS description";
|
return "Unspecified error while translating description";
|
||||||
|
|
||||||
return m_message.c_str();
|
return m_message.c_str();
|
||||||
}
|
}
|
@ -1,7 +1,5 @@
|
|||||||
#include <plasp/sas/TranslatorASP.h>
|
#include <plasp/sas/TranslatorASP.h>
|
||||||
|
|
||||||
#include <plasp/sas/TranslatorException.h>
|
|
||||||
|
|
||||||
namespace plasp
|
namespace plasp
|
||||||
{
|
{
|
||||||
namespace sas
|
namespace sas
|
||||||
|
Reference in New Issue
Block a user