/jEdit/tags/jedit-4-2-pre4/bsh/commands/error.bsh
Unknown | 10 lines | 8 code | 2 blank | 0 comment | 0 complexity | 28ce439f8a866cb717ee553b9a010355 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
1/**
2 Print the item as an error.
3 In the GUI console the text will show up in (something like) red,
4 else it will be printed to standard error.
5*/
6
7void error( item ) {
8 this.interpreter.error( String.valueOf(item) );
9}
10