Help for this page

Select Code to Download


  1. or download this
        if (! $self->loaddata()) {
            die "Error loading data!";
        }
        return $self;
    
  2. or download this
        eval { $self->loaddata() };
        if ($@) {
            die "Error loading data! Reason: $@";
        }
        return $self;