Apache-AxKit-Provider-RDBMS
view release on metacpan or search on metacpan
lib/Apache/AxKit/Provider/RDBMS/ContentProvider.pm view on Meta::CPAN
package Apache::AxKit::Provider::RDBMS::ContentProvider;
use strict;
sub new {
my $class = shift;
my $this = { apache => shift };
bless $this, $class;
$this->init();
return $this;
}
sub init {
}
sub getContent {
throw Apache::AxKit::Exception::Error( -text => "subclasses must implement this method" );
}
1;
( run in 2.401 seconds using v1.01-cache-2.11-cpan-5a3173703d6 )