|  |  
 |   |   
 NAMEJE::Object::Error::URIError - JavaScript URIError object class SYNOPSIS  use JE::Object::Error::URIError;
  # Somewhere in code called by an eval{}
  die new JE::Object::Error::URIError $global, "(Error message here)";
  # Later:
  $@->prop('message');  # error message
  $@->prop('name');     # 'URIError'
  "$@";                 # 'URIError: ' plus the error message
DESCRIPTIONThis class implements JavaScript URIError objects for JE. METHODSSee JE::Types and JE::Object::Error. SEE ALSO
 
 |