mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
13 lines
268 B
C++
Executable File
13 lines
268 B
C++
Executable File
// File: StepFile_CallFailure.cxx
|
|
// Created: Tue Feb 05 17:46:31 2002
|
|
// Author: Sergey KUUL
|
|
// <skl@polox>
|
|
|
|
#include <Standard_Failure.hxx>
|
|
#include <StepFile_CallFailure.hxx>
|
|
|
|
void StepFile_CallFailure(char * const message)
|
|
{
|
|
Standard_Failure::Raise(message);
|
|
}
|