3 TestObject - An implementation of TestInterface
7 This module attempts to provide an implementation of TestInterface and
8 is used for illustrating exception throwing using Graham Barr's
13 Steve Chervitz E<lt>sac@bioperl.orgE<gt>
17 package Bio
::Root
::TestObject
;
21 # Define a special type of error "Bio::TestException" as a subclass of Error.
23 # 1. The ISA declaration effectively defines our new Exception object.
24 # 2. This declaration doesn't have to be located in the Bio directory.
25 # 3. We don't have to use Bio::Root::Exception in this module.
26 # 4. If Error.pm isn't available this statement doesn't matter.
27 @Bio::TestException
::ISA
= qw( Bio::Root::Exception );
29 use base
qw( Bio::Root::Root );
31 # Note that we're not implementing foo(), so calling it
32 # will result in a Bio::Root::NotImplemented exception.
35 my ($self, $data) = @_;
36 print "Setting test data ($data)\n" if $data && $self->verbose;
37 $self->{'data'} = $data if $data;
39 return $self->{'data'}
46 print "\nExecuting method bar() in TestObject\n" if $self->verbose;
47 print "Throwing a Bio::TestException\n" if $self->verbose;
49 my $message = "A Test error";
51 # Bio::Root::Root::throw() will make use of Error.pm if present.
52 # The type of Error is specified with a -class parameter.
53 # If -class is not supplied, a Bio::Root::Exception is throw.
54 # In this case, the argument can consist of a simple string.
56 $self->throw( -class => 'Bio::TestException',
59 print "Code within bar() below the throw that shouldn't be executed.\n" if $self->verbose;