This is PerlMonks "Mobile"

Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  


in reply to Question about ellipsis statement '...'

Good spot!

I think the ellipsis "keyword" can be best explained as being equivalent to

die "Unimplemented";

Edit: And the documentation says at the end of the first paragraph:

Perl throws an exception with the text Unimplemented

Replies are listed 'Best First'.
Re^2: Question about ellipsis statement '...'
by rsFalse (Chaplain) on Mar 01, 2021 at 11:34 UTC
    For me was unclear what does mean "throws an exception". Kinda vegetable I am unfamiliar with.
      Refer to perl's glossary (perlglossary) for 'exception' and 'exception handling'.
      Bill