New Base::Exception type RestoreError

This commit is contained in:
Abdullah Tahiri
2018-11-16 07:18:03 +01:00
committed by wmayer
parent 3ec65a32ec
commit 83bee99cde
2 changed files with 45 additions and 0 deletions

View File

@@ -827,6 +827,30 @@ CADKernelError::CADKernelError(const CADKernelError &inst)
}
// ---------------------------------------------------------
// ---------------------------------------------------------
RestoreError::RestoreError()
: Exception()
{
}
RestoreError::RestoreError(const char * sMessage)
: Exception(sMessage)
{
}
RestoreError::RestoreError(const std::string& sMessage)
: Exception(sMessage)
{
}
RestoreError::RestoreError(const RestoreError &inst)
: Exception(inst)
{
}
// ---------------------------------------------------------
#if defined(__GNUC__) && defined (FC_OS_LINUX)