home *** CD-ROM | disk | FTP | other *** search
/ Freelog Special Freeware 25 / FreelogHS25.iso / Dessin / ArtOfIllusion2.2.1 / ArtOfIllusion.jar / bsh / commands / error.bsh < prev    next >
Text File  |  2005-05-23  |  224b  |  11 lines

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