Ice Sheet System Model  4.18
Code documentation
Data Structures | Macros
exceptions.h File Reference

: two types of exceptions are handled for now. Errors, and warnings. Those exceptions are trapped provided the matlab modules are started using MODULEBOOT, and ended using MODULEEND. These are macros hiding try, catch statements. This header file defines our own exceptions More...

#include <exception>
#include <string>
#include <iostream>
#include <sstream>
#include <iomanip>
#include <iosfwd>

Go to the source code of this file.

Data Structures

class  ErrorException
 

Macros

#define _assert_(ignore)    ((void) 0)
 
#define _error_(StreamArgs)
 
#define ExceptionTrapBegin()
 
#define ExceptionTrapEnd()
 

Detailed Description

: two types of exceptions are handled for now. Errors, and warnings. Those exceptions are trapped provided the matlab modules are started using MODULEBOOT, and ended using MODULEEND. These are macros hiding try, catch statements. This header file defines our own exceptions

Definition in file exceptions.h.

Macro Definition Documentation

◆ _assert_

#define _assert_ (   ignore)     ((void) 0)

Definition at line 37 of file exceptions.h.

◆ _error_

#define _error_ (   StreamArgs)
Value:
do{std::ostringstream aLoNgAnDwEiRdLoCaLnAmeFoRtHiSmAcRoOnLy; \
aLoNgAnDwEiRdLoCaLnAmeFoRtHiSmAcRoOnLy << StreamArgs << std::ends; \
throw ErrorException(__FILE__,__func__,__LINE__,aLoNgAnDwEiRdLoCaLnAmeFoRtHiSmAcRoOnLy.str());}while(0)

Definition at line 49 of file exceptions.h.

◆ ExceptionTrapBegin

#define ExceptionTrapBegin ( )
Value:
; \
try{

Definition at line 61 of file exceptions.h.

◆ ExceptionTrapEnd

#define ExceptionTrapEnd ( )
Value:
; }\
catch(ErrorException &exception){\
exception.Report();\
return 1;\
}\
catch(exception& e) {\
_printf_("Standard exception: " << e.what() << "\n\n");\
return 1;\
}\
catch(...){\
_printf_("An unexpected error occurred \n\n");\
return 1;\
}

Definition at line 64 of file exceptions.h.

ErrorException
Definition: exceptions.h:80