mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-19 08:25:46 +01:00
11 lines
280 B
Text
11 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;
|
||
|
}
|