Not an Exporter and not implemented
authorJoe Atzberger <atz@esilibrary.com>
Tue, 1 Jun 2010 17:50:35 +0000 (17:50 +0000)
committerThomas Berezansky <tsbere@mvlc.org>
Tue, 1 Jun 2010 17:50:35 +0000 (17:50 +0000)
ILS/Transaction/FeePayment.pm

index 1081d86..6930f66 100644 (file)
 
 package ILS::Transaction::FeePaid;
 
-use Exporter;
 use warnings;
 use strict;
 
 use ILS;
 use ILS::Transaction;
+use base qw/ILS::Transaction/;
 
-our @ISA = qw(Exporter ILS::Transaction);
+sub new {
+    warn "Not implemented";
+    return;
+}
 
 1;