mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-15 22:55:13 +01:00
10 lines
280 B
Text
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;
|
|
}
|