/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

  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. void error( item ) {
  7. this.interpreter.error( String.valueOf(item) );
  8. }