blob: 9ed8f888f4b22b6a4a8b88b99d4b6be7819b1308 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// 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);
}
|