Notify
Objects
- error :
object
Useful namespace for helping with error utility functions
- warn :
object
Useful namespace for helping with error utility functions
object
error : Useful namespace for helping with error utility functions
Kind: global namespace
- error :
object
error.emptyParentFunction()
Function helper to error in console if a child class is expected to overwrite a parent class’s function but didnt.
Kind: static method of error
error.err(string)
Function helper separated out to console error for when we eventually have a more robust erroring system.
Kind: static method of error
Param | Type | Description |
---|---|---|
string | string |
string of texted emitted through the console. |
object
warn : Useful namespace for helping with error utility functions
Kind: global namespace
- warn :
object
warn.EmptyParentFunction()
Function helper to warn in console if a child class might want to overwrite a parent class’s function but didnt. Useful for base classes that are more abstract classes (if in Java or C++) to remind the user of the child class that there is more to implement.
Kind: static method of warn
warn.warn(string)
Function helper separated out to console warn for when we eventually have a more robust warning system.
Kind: static method of warn
Param | Type | Description |
---|---|---|
string | string |
string of texted emitted through the console. |