Skip to main content

Documentation Index

Fetch the complete documentation index at: https://notevil.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Open topic with navigation CAPL Functions » ISO11783 » File Server Interaction Layer (FS IL) » FSIL_OnError

FSIL_OnError (Callback)

Valid for: CANoe DE • CANoe4SW DE

Function Syntax

void FSIL_OnError( long errorCode, long param );

Description

Is called if an error has occurred.

Parameters

  • errorCode: IL Error Code
  • param: Additional parameter depending on the error code

Return Values

Example

void FSIL_OnError( long errorCode, long param )
{
  write( "Error %d, parameter %d", errorCode, param );
}