![]() |
BlitzMax Extended
0.8.11
Pushing Blitz to the Max.
|
00001 00008 #ifndef BLITZ_EX_NULLMETHODEXCEPTION_H 00009 #define BLITZ_EX_NULLMETHODEXCEPTION_H 00010 00011 #include "blitz_blitzexception.h" 00012 00013 BB_BEGIN_DECLS 00014 00019 struct BBNullMethodException 00020 { 00021 BBClass *clas; 00022 int refs; 00023 00024 BBException *cause; 00025 }; 00026 00027 extern BBClass bbNullMethodExceptionClass; 00028 00032 BBString* bbNullMethodExceptionToString(const BBNullMethodException *ex); 00033 00034 // API 00035 00039 BBNullMethodException* bbNullMethodExceptionCreate(); 00040 00041 #define bbNullMethodError brl_blitz_NullMethodError 00042 00046 void bbNullMethodError(); 00047 00048 BB_END_DECLS 00049 00050 #endif // BLITZ_EX_NULLMETHODEXCEPTION_H