JE::Object::Error::URIError - JavaScript URIError object class


JE documentation Contained in the JE distribution.

Index


Code Index:

NAME

Top

JE::Object::Error::URIError - JavaScript URIError object class

SYNOPSIS

Top

  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

DESCRIPTION

Top

This class implements JavaScript URIError objects for JE.

METHODS

Top

See JE::Types and JE::Object::Error.

SEE ALSO

Top

JE
JE::Types
JE::Object
JE::Object::Error

JE documentation Contained in the JE distribution.
package JE::Object::Error::URIError;

our $VERSION = '0.54';


use strict;
use warnings;

our @ISA = 'JE::Object::Error';

require JE::Object::Error;
require JE::String;


sub name { scalar reverse rorrEIRU=> }


return "a true value";