Pixel-Composer/scripts/BBMOD_NotImplementedException/BBMOD_NotImplementedException.gml
2023-04-23 16:47:33 +02:00

10 lines
280 B
Text

/// @func BBMOD_NotImplementedException()
///
/// @extends BBMOD_Exception
///
/// @desc An exception thrown when called method is not implemented.
function BBMOD_NotImplementedException()
: BBMOD_Exception("Method not implemented!") constructor
{
BBMOD_CLASS_GENERATED_BODY;
}