From: Joe Atzberger Date: Tue, 1 Jun 2010 17:50:35 +0000 (+0000) Subject: Not an Exporter and not implemented X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d118d2f52eb40552cbf874874c202e8e8a44b4e2;p=working%2FSIPServer.git Not an Exporter and not implemented --- diff --git a/ILS/Transaction/FeePayment.pm b/ILS/Transaction/FeePayment.pm index 1081d86..6930f66 100644 --- a/ILS/Transaction/FeePayment.pm +++ b/ILS/Transaction/FeePayment.pm @@ -19,13 +19,16 @@ 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;