logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Description

       This class implements JavaScript URIError objects for JE.

Methods

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

Name

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

See Also

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

perl v5.36.0                                       2023-08-25                   JE::Object::Error::URIError(3pm)

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

See Also