home *** CD-ROM | disk | FTP | other *** search
/ CLIX - Fazer Clix Custa Nix / CLIX-CD.cdr / mac / lib / auto / URI / URL / bad_method.al < prev    next >
Text File  |  1997-12-13  |  379b  |  16 lines

  1. # NOTE: Derived from :lib:URI:URL.pm.  Changes made here will be lost.
  2. package URI::URL;
  3.  
  4. # This is set up as an alias for various methods
  5. sub bad_method {
  6.     my $self = shift;
  7.     my $scheme = $self->scheme;
  8.     Carp::croak("Illegal method called for $scheme: URL")
  9.     if $Strict_URL;
  10.     # Carp::carp("Illegal method called for $scheme: URL")
  11.     #     if $^W;
  12.     undef;
  13. }
  14.  
  15. 1;
  16.