#include "petsc.h" int PetscError(int line,char *func,char* file,char *dir,int n,int p,char *mess,...)Not Collective
line | - the line number of the error (indicated by __LINE__) | |
func | - the function where the error occured (indicated by __FUNC__) | |
dir | - the directory of file (indicated by __SDIR__) | |
file | - the file in which the error was detected (indicated by __FILE__) | |
mess | - an error text string, usually just printed to the screen | |
n | - the generic error number | |
p | - the specific error number |
SETERRQ(n,p,mess)
Experienced users can set the error handler with PetscPushErrorHandler().
Level:intermediate
Location:src/sys/src/error/err.c
Index of all Sys routines
Table of Contents for all manual pages
Index of all manual pages