mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-02-19 16:35:40 +01:00
15 lines
431 B
Text
15 lines
431 B
Text
![]() |
/// @func BBMOD_OutOfRangeException([_msg])
|
||
|
///
|
||
|
/// @extends BBMOD_Exception
|
||
|
///
|
||
|
/// @desc An exception thrown when you try to read a value from a data structure
|
||
|
/// at an index which is out of its range.
|
||
|
///
|
||
|
/// @param {string} [_msg] The exception message. Defaults to "Index out of
|
||
|
/// range!".
|
||
|
function BBMOD_OutOfRangeException(_msg="Index out of range!")
|
||
|
: BBMOD_Exception(_msg) constructor
|
||
|
{
|
||
|
BBMOD_CLASS_GENERATED_BODY;
|
||
|
}
|